-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
68 lines (61 loc) · 1.21 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
[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 = pori_python
version = 0.1.2
url = https://github.com/bcgsc/pori_python
author_email = dat@bcgsc.ca
maintainer_email = dat@bcgsc.ca
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
python_requires = >=3.9
dependency_links = []
include_package_data = true
install_requires =
biopython
jsonschema
pandas>=1.1.0
requests
tqdm
typing_extensions>=3.7.4.2,<5
[options.extras_require]
deploy = twine; wheel; m2r
test = pytest; pytest-cov; pytest-runner
docs = mkdocs; mkdocs-material; markdown-refdocs; mkdocs-redirects
dev =
twine
wheel
m2r
pytest
pytest-runner
pytest-cov
mkdocs
mkdocs-material
mkdocs-redirects
markdown-refdocs
flake8
black
flake8-annotations
isort
mypy
[options.package_data]
pori_python.ipr = content.spec.json, py.typed
pori_python.graphkb = py.typed
[options.entry_points]
console_scripts =
ipr = pori_python.ipr.main:command_interface