-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="onesc",
version="0.2.0",
author="Dan Peng",
author_email="[email protected]",
description="A computational toool to infer and simulate gene regulatory networks.",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'click',
'pygad>=3.1.0',
'pygam>=0.8.0',
'numpy>=1.21.5, <1.28.0',
'pandas>=1.4.3',
'statsmodels>=0.13.2',
'scipy>=1.8.0, <1.12.0',
'scanpy>=1.9.1',
'joblib>=1.1.0',
'networkx>=2.8.8, <=3.2.1',
'adjustText>=1.1.1',
'igraph>=0.11.5',
'tqdm_joblib>=0.0.4',
'cairocffi>=1.7.1',
'pycairo>=1.26.1'
],
python_requires='>=3.9',
)