-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
65 lines (58 loc) · 1.05 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
[flake8]
ignore = W503
E501
E203
ANN002
ANN003
ANN101
ANN102
ANN202
ANN204
[isort]
line_length = 100
multi_line_output = 3
include_trailing_comma = true
known_standard_library = requests
[metadata]
name = ipr
version = 3.13.0
author_email = [email protected]
author = ipr
maintainer_email = [email protected]
maintainer = ipr
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
python_requires = >=3.7
dependency_links = []
include_package_data = True
install_requires =
graphkb>=1.11.0
biopython
progressbar2
pandas>=1.1.0
jsonschema
[options.extras_require]
deploy = twine; wheel; m2r
test = pytest; pytest-cov
doc = mkdocs; mkdocs-material; markdown-refdocs
dev =
twine
wheel
m2r
pytest
pytest-cov
mkdocs
mkdocs-material
markdown-refdocs
flake8
black
flake8-annotations
isort
mypy
[options.package_data]
ipr = ipr/content.spec.json, py.typed
[options.entry_points]
console_scripts =
ipr = ipr.main:command_interface