generated from pollen-robotics/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
59 lines (49 loc) · 1.13 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 = pollen-manipulation
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
reachy-sdk
PyYAML==6.0.1
contact-graspnet-pytorch @ git+https://github.com/pollen-robotics/contact_graspnet_pytorch
[options.packages.find]
where=src
[options.package_data]
"": ["*.json", "*.yaml", "*.pt"],
[options.extras_require]
dev = black==23.12.1
flake8==7.0.0
pytest==7.4.3
coverage==7.3.2
mypy==1.8.0
isort==5.13.2
types-PyYAML==6.0.12
[options.entry_points]
console_scripts =
[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