forked from dfci/matchengine-V2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (55 loc) · 1.88 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="matchengine-V2",
version="2.0.0",
packages=[
"matchengine",
"matchengine.internals",
"matchengine.internals.database_connectivity",
"matchengine.internals.plugin_helpers",
"matchengine.internals.typing",
"matchengine.internals.utilities",
"matchengine.plugins"
],
author='Eric Marriott, Ethan Siegel',
author_email='[email protected], [email protected]',
description='Open source engine for matching cancer patients to precision medicine clinical trials (V2).',
long_description=long_description,
long_description_content_type='text/markdown',
entrypoints={
"console-scripts": [
"matchengine = matchengine.main"
]
},
install_requires=[
"bson>=0.5.8",
"python-dateutil==2.8.0",
"PyYAML==5.1",
"Pandas>=0.25.0",
"pymongo==3.8.0",
"networkx==2.3",
"motor==2.0.0"
],
include_package_data=True,
python_requires='>=3.7',
download_url='https://github.com/dfci/matchengine-V2/archive/2.0.0.tar.gz',
classifiers=[
"Environment :: Console",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD",
"Operating System :: Unix",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Utilities",
"Typing :: Typed"
]
)