-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1.14 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
# python3 setup.py sdist
import setuptools
import alona
from distutils.core import setup
from distutils.extension import Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="alona-oscarf",
version=alona.__version__,
author="Oscar Franzen",
author_email="p.oscar.franzen@gmail.com",
description="Analysis pipeline for single cell RNA sequencing data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/oscar-franzen/alona",
packages=setuptools.find_packages(),
install_requires=['click>=7.0', 'matplotlib>=3.0.3', 'numpy>=1.16.3',
'pandas>=0.24.2', 'scipy>=1.2.1', 'scikit-learn>=0.21.0',
'leidenalg>=0.7.0', 'umap-learn>=0.3.9', 'statsmodels>=0.9.0',
'python-igraph>=0.7.1', 'seaborn>=0.9.0', 'patsy>=0.5.1'],
include_package_data=True,
python_requires='>=3.6',
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPLv3",
"Operating System :: OS Independent",
]
)