-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
83 lines (63 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import setuptools
import sys
import os
import shutil
import distutils.cmd
VERSION = "0.3.1"
class PypiCommand(distutils.cmd.Command):
description = "Build and upload for PyPI."
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
shutil.rmtree("dist/")
wheel_file = "CytofDR-{}-py3-none-any.whl".format(VERSION)
tar_file = "CytofDR-{}.tar.gz".format(VERSION)
os.system("{} setup.py sdist bdist_wheel".format(sys.executable))
os.system("twine upload dist/{} dist/{}".format(wheel_file, tar_file))
class CondaCommand(distutils.cmd.Command):
description = "Build and upload for conda."
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
shutil.rmtree("dist_conda/")
os.system("conda build . --output-folder dist_conda/ -c conda-forge -c bioconda")
os.system("anaconda upload ./dist_conda/noarch/cytofdr-{}-py_0.tar.bz2".format(VERSION))
setuptools.setup(
name = "CytofDR",
version = VERSION,
description = "CyTOF Dimension Reduction Framework",
author="Kevin Wang",
url="https://github.com/kevin931/CytofDR",
long_description_content_type = "text/markdown",
long_description = open("README.md").read(),
packages=["CytofDR"],
python_requires=">=3.7",
install_requires=["scikit-learn",
"numpy",
"scipy",
"umap-learn",
"openTSNE",
"phate",
"annoy",
"matplotlib",
"seaborn"],
test_requires=["pytest",
"pytest-cov",
"pytest-mock",
"coverage"],
license="MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English"
],
cmdclass = {"pypi": PypiCommand,
"conda": CondaCommand
}
)