-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
91 lines (81 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = farm_ng_amiga
version = 2.3.3
description = Amiga development kit for third party hardware or software extensions
long_description = file: README.md
long_description_content_type = text/markdown
author = farm-ng Inc.
author_email = [email protected]
url = https://github.com/farm-ng/farm-ng-amiga
download_url = https://github.com/farm-ng/farm-ng-amiga
keywords = robotics
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: Other/Proprietary License
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development
Framework :: Robot Framework
[options]
python_requires = >=3.6
setup_requires =
wheel
# temporary until released
farm-ng-core
install_requires =
grpcio
grpcio-tools
# temporary until seg fault issue with protobuf>=5.28 is resolved in Brain's Image
protobuf<=5.27.5
# temporary until released
farm_ng_core
tests_require =
pytest
pytest-runner
pytest-asyncio
pytest-mypy
test_suite = tests
package_dir =
= py
packages =
farm_ng
farm_ng.amiga
farm_ng.canbus
farm_ng.gps
farm_ng.oak
farm_ng.imu
farm_ng.filter
farm_ng.track
[options.extras_require]
dev =
pytest
pytest-asyncio
pytest-mypy
pylint-protobuf
pre-commit
mypy
types-protobuf
pylint
grpcio-tools
mypy-protobuf
pylint-protobuf
[mypy]
files = py/tests, py/examples
ignore_missing_imports = True
# types-protobuf fix: https://github.com/python/typeshed/issues/7519
namespace_packages = True
[options.package_data]
farm_ng.amiga =
*.proto
farm_ng.canbus =
*.proto
farm_ng.gps =
*.proto
farm_ng.oak =
*.proto
farm_ng.filter =
*.proto
farm_ng.track =
*.proto