forked from daisybio/NEASE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 1.11 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
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='nease',
version='0.0.4',
description='NEASE: A network-based approach for the enrichment of alternative splicing events',
long_description=README,
url='https://github.com/louadi/NEASE',
author='Zakaria Louadi',
author_email='[email protected]',
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'pandas>=1.2.1',
'numpy>=1.20.2',
'networkx>=2.5',
'plotly>=4.14.3',
'scipy>=1.6.2',
'statsmodels>=0.12.2',
'gseapy>=0.10.4',
'matplotlib>=3.4.1',
],
)