-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
59 lines (52 loc) · 1.25 KB
/
setup.cfg
File metadata and controls
59 lines (52 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "app"
version = "0.0.1"
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Developers,
Natural Language :: English,
Operating System :: POSIX :: Linux
Programming Language :: C++,
Programming Language :: Python,
Programming Language :: Python :: 3,
Programming Language :: Python :: 3 :: Only,
Programming Language :: Python :: 3.13,
Programming Language :: Python :: Implementation :: CPython
[options]
include_package_data = True
package_dir =
=./src/python
packages = find:
python_requires = >=3.13
install_requires =
importlib-metadata; python_version<"3.13"
cython
numpy==2.3.5
cuda-toolkit[cudart,nvcc,nvjpeg] == 12.4.1
[options.entry_points]
console_scripts =
imcli = app.imcli:main
[options.package_data]
* = py.typed
[options.extras_require]
development =
mypy==1.18.2
ruff==0.14.6
flake8==7.3.0
pylint==4.0.2
nbqa==1.9.1
pytest==9.0.1
pytest-cov==7.0.0
[options.packages.find]
where = ./src/python
include =
app
app.*
[flake8]
max-line-length = 120
[tool.pytest]
addopts =
--cov=app --cov-report=html
testpaths =
test/python