-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (60 loc) · 1.41 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
[metadata]
name = rpi_camera_colony
version = 0.5.0
author = Lars B. Rollik
author_email = L.B.Rollik@protonmail.com
license = BSD License
license_files = LICENSE
description = RPi Camera Colony: Central control for video acquisition with (many) Raspberry Pi cameras
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/larsrollik/rpi_camera_colony
project_urls =
Issue Tracker = https://github.com/larsrollik/rpi_camera_colony/issues
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
zip_safe = False
include_package_data = True
package_dir =
packages = find:
python_requires = >=3.6
install_requires =
pyzmq
tornado
tqdm
configobj
numpy
pandas
rich
[options.packages.find]
where =
[options.extras_require]
rpi =
picamera
RPi.GPIO
dev =
black
coverage
pytest-cov
pytest
gitpython
bump2version
pre-commit
flake8
[options.entry_points]
console_scripts =
rcc-conductor = rpi_camera_colony.control.main:main
rcc-acquisition = rpi_camera_colony.acquisition.__main__:main
; rcc-calibration = rpi_camera_colony.calibration.__main__:main
[options.package_data]
* = *.config
[flake8]
ignore = E203, E266, E501, W503, F403, F401
max-line-length = 79
max-complexity = 18
select = B,C,E,F,W,T4,B9
exclude = __init__.py,build,__pycache__,.git,tests