-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (82 loc) · 2.18 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
##########################
# Setup.py Configuration #
##########################
[metadata]
name = bio2bel_gwascatalog
version = attr: src.bio2bel_gwascatalog.version.VERSION
description = The NHGRI-EBI Catalog of published genome-wide association studies.
long_description = file: README.rst
# URLs associated with the project
url = https://github.com/bio2bel/gwascatalog
download_url = https://github.com/bio2bel/gwascatalog/releases
project_urls =
Bug Tracker = https://github.com/bio2bel/gwascatalog/issues
Source Code = https://github.com/bio2bel/gwascatalog
# Author information
author = Charles Tapley Hoyt
author_email = [email protected]
maintainer = Charles Tapley Hoyt
maintainer_email = [email protected]
# License information
license = MIT
license_file = LICENSE
# Search information
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3 :: Only
License :: OSI Approved :: MIT License
Topic :: Scientific/Engineering :: Chemistry
Topic :: Scientific/Engineering :: Bio-Informatics
keywords =
Biological Expression Language
Bio2BEL
[options]
install_requires =
bio2bel
pandas
pybel
sqlalchemy
protmapper
tqdm
python_requires = >=3.7
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_gwascatalog = bio2bel_gwascatalog.cli:main
bio2bel =
gwascatalog = bio2bel_gwascatalog
[options.packages.find]
where = src
######################
# Doc8 Configuration #
# (doc8.ini) #
######################
[doc8]
max-line-length = 120
##########################
# Coverage Configuration #
# (.coveragerc) #
##########################
[coverage:run]
branch = True
source = bio2bel_gwascatalog
[coverage:paths]
source =
src/bio2bel_gwascatalog
.tox/*/lib/python*/site-packages/bio2bel_gwascatalog
[coverage:report]
show_missing = True