forked from mxcube/lucid3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (45 loc) · 1.1 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
[metadata]
name = lucid3
version = attr: lucid3.__version__
author = ESRF
description = Optical loop finding
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://github.com/mxcube/lucid3
project_urls =
Source = https://github.com/mxcube/lucid3
Documentation = https://github.com/mxcube/lucid3
Tracker = https://github.com/mxcube/lucid3/issues
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
[options]
packages = find:
python_requires = >=3.7
install_requires =
imageio
opencv-python>=2.4
matplotlib
[options.extras_require]
test =
pytest
dev =
black
flake8
%(test)s
[options.entry_points]
console_scripts =
lucid3=lucid3.lucid3:main
# 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
[coverage:run]
omit =
setup.py
lucid3/tests/*