forked from opensafely-core/cohort-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 860 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
31
32
import os
from setuptools import setup, find_packages
with open(os.path.join("cohortextractor", "VERSION")) as f:
version = f.read().strip()
setup(
name="opensafely-cohort-extractor",
version=version,
packages=find_packages(),
url="https://github.com/opensafely/cohort-extractor",
author="OpenSAFELY",
author_email="[email protected]",
python_requires=">=3.7",
install_requires=[
"opensafely-jobrunner>=2.0,<3.0",
"pandas",
"prettytable",
"pyyaml",
"requests",
"seaborn",
"sqlalchemy",
"sqlparse",
"tinynetrc",
],
entry_points={
"console_scripts": ["cohortextractor=cohortextractor.cohortextractor:main"]
},
include_package_data=True,
classifiers=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
)