-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (43 loc) · 1.45 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
# 🤢 Sickbay: Clinical data model for the Consortium for Molecular and Cellular
# Characterization of Screen-Detected Lesions. This is the Python setuptools
# metadata for the package.
[metadata]
name = mcl.sickbay
version = attr: mcl.sickbay.VERSION
description = 🤢 Sickbay: Clinical data model for the Consortium for Molecular and Cellular Characterization of Screen-Detected Lesions.
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
author = Sean Kelly
author_email = sean.kelly@jpl.nasa.gov
url = https://github.com/MCLConsortium/mcl.sickbay
keywords = rest api web clinical data lesions cancer orm model database
license = ALv2
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Framework :: Buildout
Intended Audience :: Developers
Intended Audience :: Healthcare Industry
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Topic :: Database
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
zip_safe = True
include_package_data = True
packages = find_namespace:
package_dir =
=src
install_requires =
psycopg2==2.8.5
sqlalchemy==1.3.19
aenum==2.2.4
[options.package_data]
* = *.txt, *.rst, *.md
[options.packages.find]
where = src
[options.extras_require]
[options.entry_points]
console_scripts =
create-clinical-db = mcl.sickbay.db:main