-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.04 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 1.04 KB
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
from setuptools import find_packages
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='radar',
version='1.0.0',
description='Reference-guided Anomalous-cell Detection, Alignment, and Resolution',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Kaichen Xu',
author_email='Kaichenxu@stu.zuel.edu.cn',
url='https://github.com/Catchxu/RADAR',
license='GPL v3',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
python_requires=">=3.8",
install_requires=[
'anndata>=0.10.7',
'numpy>=1.22.4',
'pandas>=1.5.1',
'scanpy>=1.10.1',
'scikit-learn>=1.2.0',
'scipy>=1.11.4',
'torch>=2.0.0',
'tqdm>=4.64.1'
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
zip_safe=False,
)