forked from OHDSI/InspectOMOP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1.11 KB
/
setup.py
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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
#load version info
with open('inspectomop/VERSION.txt') as fh:
version = fh.read().strip()
print(version)
setuptools.setup(
#descriptors
name='inspectomop',
version=version,
description='Database query tool for the OMOP Common Data Model',
long_description=long_description,
long_description_content_type="text/markdown",
author='Jonathan Badger',
author_email='jonathancbadger@gmail.com',
url='https://github.com/jbadger3/inspectomop',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Development Status :: 4 - Beta'
],
#extra_inclustions
packages=setuptools.find_packages(),
package_data={'inspectomop': ['VERSION.txt','test/*.sqlite3']},
#requirements/dependencies
python_requires='>=3.0',
install_requires=['sqlalchemy>=1.2','pandas'],
)