forked from dials/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (61 loc) · 1.88 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
[metadata]
name = dials_data
version = 2.4.0
url = https://github.com/dials/data
project_urls =
Bug Tracker = https://github.com/dials/data/issues
Documentation = https://dials-data.readthedocs.io/
Source Code = https://github.com/dials/data
description = DIALS Regression Data Manager
author = DIALS development team
author_email = [email protected]
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
license = BSD 3-Clause License
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords = dials, dials_data
[options]
include_package_data = True
install_requires =
importlib_resources>=1.1
pytest
pyyaml
requests
packages = find:
python_requires = >=3.8
zip_safe = False
[options.entry_points]
console_scripts =
dials.data = dials_data.cli:main
libtbx.dispatcher.script =
dials.data = dials.data
libtbx.precommit =
dials_data = dials_data
pytest11 =
dials_data = dials_data.pytest11
[options.package_data]
dials_data = py.typed
[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,