-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
62 lines (55 loc) · 943 Bytes
/
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
[options]
include_package_data = True
packages = find_namespace:
package_dir =
= src
zip_safe = True
install_requires =
coloredlogs~=15.0
pyyaml~=6.0
fastapi
pydantic
uvicorn
hgvs
# [options.entry_points]
# console_scripts =
# marvin-quote = biocommons.uta-rest.__main__:main
[options.extras_require]
dev =
bandit~=1.7
black~=22.3
build~=0.8
flake8~=4.0
ipython~=8.4
isort~=5.10
mypy
pylint~=2.14
pre-commit
test =
pytest~=7.1
pytest-cov~=4.0
pytest-optional-tests
tox~=3.25
vcrpy
pytest-vcr
docs =
mkdocs
[options.packages.find]
where = src
exclude =
__pycache__
*.pyc
[options.package_data]
* = *.gz, *.json, *.yaml
[flake8]
ignore = E129,E133,E203,E221,E241,E251,E303,E266,H106,H904,W291
max-line-length = 120
max-complexity = 15
hang-closing = true
exclude =
.eggs
.tox
build
dist
docs/conf.py
tests/*