-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (29 loc) · 889 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (29 loc) · 889 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name='BiomarkerTranslatorAPI',
version='0.0',
author='Paul W. Egeler, M.S., GStat',
author_email='paul.egeler@spectrumhealth.org',
description='NCATS Biomarker Translator API',
url='https://github.com/SpectrumHealthResearch/BiomarkerTranslatorAPI',
license='GPL-3',
package_dir={'BiomarkerTranslatorAPI': 'src'},
packages=[
'BiomarkerTranslatorAPI',
'BiomarkerTranslatorAPI.resources',
'BiomarkerTranslatorAPI.common',
],
install_requires=[
'flask',
'flask_restful',
'pymysql',
'python-dotenv',
'flasgger',
],
keywords=[
'biomarker',
'translational medicine',
'API',
],
python_requires='>=3.5')