-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.cfg
More file actions
90 lines (83 loc) · 2.84 KB
/
setup.cfg
File metadata and controls
90 lines (83 loc) · 2.84 KB
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
[metadata]
name = zocalo
version = 0.10.0
description = Infrastructure components for automated data processing at Diamond Light Source
author = Diamond Light Source - Scientific Software et al.
author_email = scientificsoftware@diamond.ac.uk
license = BSD
license_file = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
project-urls =
Download = https://github.com/DiamondLightSource/python-zocalo/releases
Documentation = https://github.com/DiamondLightSource/python-zocalo
GitHub = https://github.com/DiamondLightSource/python-zocalo
Bug-Tracker = https://github.com/DiamondLightSource/python-zocalo/issues
[options]
include_package_data = True
install_requires =
PyYAML
graypy>=1.0
marshmallow
setuptools
workflows>=2.14
packages = find:
package_dir =
=src
python_requires = >=3.6
zip_safe = False
[options.entry_points]
console_scripts =
zocalo.go = zocalo.cli.go:run
zocalo.queue_drain = zocalo.cli.queue_drain:run
zocalo.service = zocalo.service:start_service
zocalo.shutdown = zocalo.cli.shutdown:run
zocalo.wrap = zocalo.cli.wrap:run
libtbx.dispatcher.script =
zocalo.go = zocalo.go
zocalo.queue_drain = zocalo.queue_drain
zocalo.service = zocalo.service
zocalo.shutdown = zocalo.shutdown
zocalo.wrap = zocalo.wrap
libtbx.precommit =
zocalo = zocalo
workflows.services =
Schlockmeister = zocalo.service.schlockmeister:Schlockmeister
zocalo.configuration.plugins =
graylog = zocalo.configuration.plugin_graylog:Graylog
rabbitmqapi = zocalo.configuration.plugin_rabbitmqapi:RabbitAPI
storage = zocalo.configuration.plugin_storage:Storage
jmx = zocalo.configuration.plugin_jmx:JMX
zocalo.wrappers =
dummy = zocalo.wrapper:DummyWrapper
ispyb.simulator.before_datacollection =
zocalo = zocalo.ispyb.simulator:before
ispyb.simulator.after_datacollection =
zocalo = zocalo.ispyb.simulator:after
[options.packages.find]
where = src
[flake8]
# Black disagrees with flake8 on a few points. Ignore those.
ignore = E203, E266, E501, W503
# E203 whitespace before ':'
# E266 too many leading '#' for block comment
# E501 line too long
# W503 line break before binary operator
max-line-length = 88
select =
E401,E711,E712,E713,E714,E721,E722,E901,
F401,F402,F403,F405,F541,F631,F632,F633,F811,F812,F821,F822,F841,F901,
W191,W291,W292,W293,W602,W603,W604,W605,W606,
# flake8-comprehensions, https://github.com/adamchainz/flake8-comprehensions
C4,
[aliases]
test = pytest