-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 816 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
from setuptools import setup, find_packages
setup(name='sctools',
version='0.4.1',
description='Tools that come handy when working in scanpy all day long',
url='http://github.com/redst4r/sctools/',
author='redst4r',
maintainer='redst4r',
maintainer_email='[email protected]',
license='GNU GPL 3',
keywords='scanpy, scrnaseq',
packages=find_packages(),
include_package_data=True,
install_requires=[
'toolz',
'numpy',
'tqdm',
'scipy',
'pandas',
'scanpy>1.7',
'plotnine',
'rnaseqtools @git+https://github.com/redst4r/rnaseqtools',
'scrublet',
'harmonypy ==0.0.5',
'gprofiler-official',
'celltypist',
],
zip_safe=False)