forked from olofsvensson/edna2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
76 lines (69 loc) · 1.51 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
[metadata]
name = edna2
version = attr: edna2.__version__
author = ESRF
author_email = svensson@esrf.fr
description = Framework for tasks
long_description = file: README.rst
long_description_content_type = text/markdown
license = MIT
url = https://github.com/olofsvensson/edna2/
project_urls =
Source = https://github.com/olofsvensson/edna2/
Documentation = https://edna2.readthedocs.io/
Tracker = https://github.com/olofsvensson/edna2/issues
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
package_dir=
=src
packages=find:
python_requires = >=3.7
install_requires =
matplotlib >=3.2
suds >=1.1
xmltodict >=0.12
jsonschema >=3.2
graypy >=2.1
h5py >=2.10
numpy >=1.19
fabio >=0.11
requests >=2.22
distro >=1.5
scipy >=1.5
billiard
autocryst
hdf5plugin
[options.packages.find]
where=src
[options.package_data]
* = *.json
[options.extras_require]
test =
pytest >=7
matplotlib >=3
dev =
%(test)s
black >=22
flake8 >=4
doc =
%(test)s
sphinx >=4.5
sphinxcontrib-mermaid >=0.7
# E501 (line too long) ignored for now
# E203 and W503 incompatible with black formatting (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
[flake8]
ignore = E501, E203, W503
max-line-length = 88
exclude =
.eggs
[build_sphinx]
project = edna2
version = attr: edna2.__version__
source-dir = ./doc
[coverage:run]
omit =
setup.py
tests/*