-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
63 lines (56 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
DESCRIPTION = "scTenifoldpy"
PKGS = find_packages()
PKG_NAME = "scTenifoldpy"
PKG_VERSION = '0.1.3'
MAINTAINER = 'Yu-Te Lin'
MAINTAINER_EMAIL = 'qwerty239qwe@gmail.com'
PYTHON_REQUIRES = ">=3.7"
URL = "https://github.com/qwerty239qwe/scTenifoldpy"
LICENSE = "MIT"
CLFS = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
]
INSTALL_REQUIRES = [
"pandas~=1.2.5",
"numpy~=1.20.3",
"scipy~=1.6.3",
"setuptools~=56.2.0",
"typer~=0.4.0",
"PyYAML~=5.4.1",
"ray~=1.8.0",
"scikit-learn~=0.24.2",
"tensorly~=0.6.0",
"requests~=2.26.0",
"seaborn~=0.11.1",
"matplotlib~=3.4.3",
"networkx~=2.6.3",
"scanpy~=1.7.2",
"protobuf==3.20.*"
]
# This call to setup() does all the work
setup(
name=PKG_NAME,
version=PKG_VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
url=URL,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
license=LICENSE,
classifiers=CLFS,
packages=PKGS,
include_package_data=True,
install_requires=INSTALL_REQUIRES,
entry_points={
"console_scripts": [
"scTenifold=scTenifold.__main__:app",
]
},
)