-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (44 loc) · 1.33 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='sketchKH',
version='0.1.2',
description='Distribution-based sketching of single-cell samples',
author='CompCy Lab',
author_email='[email protected]',
url='https://github.com/CompCy-lab/SketchKH',
license='MIT',
python_requires='>=3.6, <3.10',
long_description=long_description,
long_description_content_type = 'text/markdown',
packages = find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
],
keywords=[
'cytometry',
'single-cell bioinformatics',
'clinical prediction',
'compression',
'computational biology',
],
install_requires=[
'anndata>=0.7.6',
'numpy>=1.22.4',
'scipy>=1.7.1',
'numba',
'tqdm',
'joblib',
'tqdm_joblib',
],
ext_modules=[],
)