forked from jranek/delve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.36 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='delve-fs',
packages=['delve'],
version='0.1.4',
description='Feature selection for preserving biological trajectories from single-cell data',
author='Jolene Ranek',
author_email='ranekjs@gmail.com',
url='https://github.com/jranek/delve',
license='MIT',
python_requires='>=3.6',
long_description=long_description,
long_description_content_type = 'text/markdown',
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=[
'trajectory inference',
'feature selection',
'single-cell bioinformatics',
'computational biology',
],
install_requires=[
'anndata>=0.7.6',
'sketchKH==0.1.1',
'numpy>=1.19.5',
'scipy>=1.7.1',
'pandas>=1.1.5',
'scikit-learn>=0.23.2',
'umap-learn==0.5.1',
'tqdm',
],
ext_modules=[],
)