-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 822 Bytes
/
setup.py
File metadata and controls
35 lines (33 loc) · 822 Bytes
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
from setuptools import setup, find_packages
DISTNAME = 'jtb_2023_code'
VERSION = '1.0.0'
MAINTAINER = 'Chris Jackson'
MAINTAINER_EMAIL = 'cj59@nyu.edu'
LICENSE = 'MIT'
setup(
name=DISTNAME,
version=VERSION,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
license=LICENSE,
packages=find_packages(include=['jtb_2023_code', "jtb_2023_code.*"]),
install_requires=[
'numpy',
'scipy',
'scanpy',
'pandas',
'joblib',
'anndata',
'matplotlib',
'supirfactor-dynamical',
'inferelator-velocity',
'pydeseq2'
],
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
)