forked from lcmmichielsen/scHPL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.25 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
47
48
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 6 09:24:15 2021
@author: lcmmichielsen
"""
from pathlib import Path
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="scHPL",
version="1.0.3",
author="Lieke Michielsen",
author_email="[email protected]",
description="Hierarchical progressive learning pipeline for single-cell RNA-sequencing datasets",
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lcmmichielsen/scHPL",
packages=setuptools.find_packages(),
install_requires=[
"numpy>=1.19.2",
"scipy>=1.5.2",
"scikit-learn>=0.23.2",
"pandas>=1.1.2,<2.0.0",
"newick~=1.0.0",
"anndata>=0.7.4",
"matplotlib>=3.3.1",
"seaborn>=0.11.1"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
doc=[
'sphinx',
'sphinx_rtd_theme',
'sphinx_autodoc_typehints',
'typing_extensions; python_version < "3.8"',
],
)