-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 712 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 712 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
import os
from setuptools import setup, find_packages
# Parse the version string
__version__ = ""
this_directory = os.path.dirname(os.path.abspath(__file__))
version_file = os.path.join(this_directory, "scTransform", "_version.py")
exec(open(version_file).read()) # Loads version into __version__
setup(
name="scTransform",
version=__version__,
packages=find_packages(),
install_requires=[
'numba>=0.43.1',
'numpy>=1.16.0',
'pandas>=0.23.4',
'patsy>=0.5.1',
'scipy>=1.2.0',
'statsmodels>=0.9.0',
'tqdm>=4.29.1'
],
author="David DeTomaso",
author_email="davedeto@gmail.com",
description="",
keywords="",
url=""
)