-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
59 lines (49 loc) · 1.04 KB
/
setup.cfg
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
[metadata]
name = example
version = 0.1.0
author = Pollen Robotics
author_email = [email protected]
url = https://github.com/pollen-robotics/python-template
description = Python template project
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
zip_safe = True
include_package_data = True
package_dir=
=src
install_requires =
numpy==1.25.1
[options.packages.find]
where=src
[options.package_data]
config_files =
*.json
[options.extras_require]
dev = black==24.10.0
flake8==7.1.1
pytest==7.4.3
coverage==7.3.2
mypy==1.8.0
isort==5.13.2
pdoc==14.7.0
pydocstyle==6.3.0
[options.entry_points]
console_scripts =
example_entry_point = example.celcius:main
[flake8]
exclude = tests
max-line-length = 128
extend-ignore = E203
max-complexity = 10
[coverage:run]
branch=True
[coverage:report]
show_missing=True
[mypy]
ignore_missing_imports = True
exclude = tests
strict = True
plugins = numpy.typing.mypy_plugin
explicit_package_bases = True