-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (43 loc) · 1.31 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
[metadata]
name = edrn.biomarker.notifier
version = attr: versioneer.get_version
description = Biomarker Notifier
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
author = Sean Kelly
author_email = sean.kelly@jpl.nasa.gov
# download_url = https://github.com/EDRN/edrn.biomarker.notifier/releases
keywords = edrn, cancer, biomarker, discovery, notification
license = ALv2
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
project_urls =
github=https://github.com/EDRN/edrn.biomarker.notifier
[options]
zip_safe = true
include_package_data = true
install_requires =
setuptools
rdflib
packages = find_namespace:
package_dir =
=src
namespace_packages = edrn, edrn.biomarker
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
biomarker-notifier = edrn.biomarker.notifier.main:main
[versioneer]
VCS = git
style = git-describe
tag_prefix = v
versionfile_source = src/edrn/biomarker/notifier/_version.py
versionfile_build = edrn/biomarker/notifier/_version.py
parentdir_prefix = edrn.biomarker.notifier-