-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
46 lines (41 loc) · 998 Bytes
/
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
[metadata]
name = readgroup_json_db
description = Readgroup to json db
license_files =
LICENSE
author = Charles Czysz
author_email = czysz@uchicago.edu
url = https://github.com/NCI-GDC/readgroup_json_db
long_description = file:README.md
long_description_content_type = text/markdown
python_requires = >=3.8
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
[options]
install_requires =
pandas
sqlalchemy
zip_safe = False
include_package_data = True
packages = find:
setup_requires =
setuptools_scm>=6.0
[options.entry_points]
console_scripts =
python_project = readgroup_json_db.__main__:main
[coverage:run]
branch = true
source = readgroup_json_db
parallel = true
[coverage:report]
show_missing = true
omit =
.tox/*
exclude_lines =
\#\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*return NotImplemented\b
^\s*raise$
^if __name__ == ['"]__main__['"]:$