-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.cfg
73 lines (68 loc) · 1.24 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
69
70
71
72
73
[metadata]
name = hetnetpy
maintainer = Daniel Himmelstein
maintainer_email = daniel.himmelstein@gmail.com
license = CC0 1.0
license_file = LICENSE-CC0.md
description = Hetnets in Python
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/hetio/hetnetpy
classifiers =
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Information Analysis
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Programming Language :: Python :: 3 :: Only
keywords =
hetnet
graph
heterogeneous
network
neo4j
hetio
hetnetpy
dwpc
rephetio
[options]
packages = find:
python_requires = >=3.8
install_requires =
regex
[options.extras_require]
test =
neo4j
numpy
pandas
py2neo
pytest
scipy
tqdm
stats =
pandas
matplotlib
seaborn
neo4j =
pandas
py2neo
tqdm
matrix =
numpy
scipy
[options.packages.find]
exclude =
test
[flake8]
ignore =
E203
E402
E501
E731
W503
[isort]
profile = black
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88