-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (46 loc) · 1.24 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
from setuptools import setup, find_packages
def readme():
with open('README.md', 'r', encoding='utf-8') as f:
content = f.read()
return content
setup(
name='cefcon',
version='0.3.0',
description='Deciphering cell fate control from single-cell RNA-seq data',
long_description=readme(),
long_description_content_type='text/markdown',
author='Peizhuo Wang',
author_email='wangpeizhuo_37@163.com',
url='https://github.com/WPZgithub/CEFCON',
packages=find_packages('.'),
package_data={
'cefcon': ['*.R', 'resources/*'],
},
entry_points={
"console_scripts": ['cefcon = cefcon.CEFCON:main']
},
python_requires=">=3.9,<3.13", # >=3.10 is recommended
install_requires=[
'numpy',
'scipy',
'pandas',
'scikit-learn',
'tqdm',
'torch>=1.13.0',
'torch-geometric>=2.1.0',
'scanpy>=1.9.0',
'networkx>=3.0',
'cvxpy>=1.2.0',
'gurobipy>=10.0.0',
'pyscenic>=0.12.0',
'matplotlib',
'matplotlib-venn',
'seaborn',
'biomart',
#'r',
'rpy2',
'jupyter',
'nxviz'
],
license='MIT',
)