-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
74 lines (63 loc) · 1.54 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
[metadata]
name = odin-control
description = ODIN detector control system
url = https//github.com/odin-detector/odin-control
author = Tim Nicholls
author_email = tim.nicholls@stfc.ac.uk
license = Apache License 2.0
long_description = file: README
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
package_dir =
=src
install_requires =
futures;python_version<'3'
future
pyzmq>=17.1.0
tornado>=4.3
psutil>=5.0
[options.extras_require]
dev =
mock;python_version<'3'
requests
tox
pytest-asyncio<0.23
pytest-cov
graylog =
pygelf
sync_proxy =
requests
[options.packages.find]
where = src
[options.entry_points]
# Include a command line script
console_scripts =
odin_server = odin.main:main_deprecate
odin_control = odin.main:main
[flake8]
max-line-length = 100
[tool:pytest]
asyncio_mode = strict
[coverage:run]
omit = **/odin/_version.py
# Note only applies when running pytest - for tox run it is overriden in the ini config
data_file = /tmp/odin.coverage
[coverage:paths]
# Tests are run from installed location, map back to the src directory
source =
src
**/site-packages/
[versioneer]
VCS = git
style = pep440
versionfile_source = src/odin/_version.py
versionfile_build = odin/_version.py
tag_prefix=