-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
57 lines (49 loc) · 1.11 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
[metadata]
name = fixate
author = Ryan Parry-Jones
author_email = [email protected]
description = Framework for hardware test fixtures and automated test environments
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Manufacturing
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3 :: Only
url = http://pyfixate.com/
version = attr: fixate.__version__
[options]
package_dir =
= src
packages = find:
include_package_data = True
zip_safe = False
python_requires = ~=3.8
install_requires =
pyvisa
pypubsub
pynput
ruamel.yaml
pyserial
# required for fxconfig. When ansi.Fg was added
cmd2 >= 2.3.0
numpy
PyDAQmx
# for typing.protocol
platformdirs
[options.packages.find]
where = src
[options.extras_require]
gui =
pyqt5
test =
pytest
pytest-mock
pytest-cov
wheel
docs =
sphinx >= 7.4, < 8
[options.entry_points]
console_scripts =
fxconfig = fixate.core.config_util:main