-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
62 lines (57 loc) · 1.34 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
##########################
# Setup.py Configuration #
##########################
# Configuring setup()
[metadata]
name = bio2bel_sider
version = 0.0.2-dev
url = https://github.com/bio2bel/sider
author = Charles Tapley Hoyt
author_email = [email protected]
maintainer = Charles Tapley Hoyt
maintainer_email = [email protected]
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
license = MIT
license_file = LICENSE
description = Bio2BEL SIDER.
long_description = file: README.rst
keywords =
Biological Expression Language
Drug Indications
Drug Side Effects
[options]
install_requires =
pybel>=0.13.0
bio2bel>=0.2.0,<0.3.0
click
pandas
sqlalchemy
tqdm
python_requires = >=3.6
packages = find:
package_dir =
= src
zip-safe = false
[options.extras_require]
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
[options.entry_points]
console_scripts =
bio2bel_sider = bio2bel_sider.cli:main
bio2bel =
sider = bio2bel_sider
[options.packages.find]
where = src
# configuring bdist_wheel
[bdist_wheel]
python-tag = py36