forked from SCCAF/sccaf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (25 loc) · 841 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
print(find_packages())
setup(
name='SCCAF',
version='0.0.11',
description='Single-Cell Clustering Assessment Framework',
long_description=readme(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'louvain',
'scikit-learn',
'psutil',
'scanpy==1.9.2'],
scripts=['cli/sccaf', 'cli/sccaf-assess', 'cli/sccaf-assess-merger', 'cli/sccaf-regress-out'],
author='Chichau Miau',
author_email='[email protected]',
license='MIT'
)
# modified by Yuyao Song <[email protected]> on Oct 2023 to bump scanpy version