forked from Bayer-Group/genie-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 866 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
import setuptools
setuptools.setup(
name="genie",
version="0.1.5",
url="https://github.com/heseber/genie-parser",
author="Henrik Seidel",
author_email="heseber+github@mailbox.org",
description="Working with data from the AACR GENIE project",
long_description=open("README.md").read(),
packages=setuptools.find_packages(),
install_requires=[
"natsort>=8.1.0",
"numpy>=1.22.4",
"pandas>=1.4.2",
"setuptools>=60.10.0",
"tqdm>=4.64.0",
"importlib_resources",
"pyarrow",
"biopython",
"scikit-learn",
"statsmodels",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
],
include_package_data=True,
package_data={"": ["data/*"]},
)