-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 984 Bytes
/
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
from os import path
from setuptools import setup, find_packages
from i2b2model import __version__
with open(path.join(path.abspath(path.dirname(__file__)), 'README.rst')) as f:
long_description = f.read()
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
setup(
name='i2b2model',
version=__version__,
description='i2b2 Model Wrapper',
long_description=long_description,
url='https://github.com/BD2KOnFHIR/i2b2model',
license='Apache 2.0',
author='Harold Solbrig',
author_email='[email protected]',
packages=packages,
install_requires=['SQLAlchemy', 'psycopg2-binary', 'python-dateutil', 'dynprops>=0.1.5'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
'Programming Language :: Python :: 3.6'
]
)