-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (38 loc) · 1.33 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
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(name='dysregnet',
version='0.1.0',
description='DysRegNet',
long_description=README,
long_description_content_type="text/markdown",
url='https://github.com/biomedbigdata/DysRegNet_package',
author='Zakaria Louadi, Olga Lazareva, Johannes Kersting',
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
package_dir = {'': 'src'},
packages=['dysregnet'],
include_package_data=True,
python_requires='>=3.7',
install_requires=[
'pandas',
'numpy>= 1.19',
'scipy',
'statsmodels',
'tqdm',
'scikit-learn',
],
)