-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
89 lines (69 loc) · 2.42 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
84
85
86
87
88
89
from setuptools import setup
import sys
import os
import shutil
import distutils.cmd
VERSION = "0.2.0"
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):
try:
shutil.rmtree("dist/")
except FileNotFoundError:
pass
wheel_file = "cytomulate-{}-py3-none-any.whl".format(VERSION)
tar_file = "cytomulate-{}.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):
try:
shutil.rmtree("dist_conda/")
except FileNotFoundError:
pass
os.system("conda build . --output-folder dist_conda/")
os.system("anaconda upload ./dist_conda/noarch/cytomulate-{}-py_0.tar.bz2".format(VERSION))
setup(
name = "cytomulate",
version = VERSION,
description = "Accurate and Efficient Simulation of CyTOF data",
author = "Yuqiu Yang, Kevin Wang, Zeyu Lu, Tao Wang, Sherry Wang",
author_email = "yuqiuy@smu.edu, kevinwang@smu.edu, zeyul@smu.edu, Tao.Wang@UTSouthwestern.edu, xinlei.wang@uta.edu",
long_description_content_type = "text/markdown",
long_description = open("README.md").read(),
packages=["cytomulate",
"cytomulate.creation",
"cytomulate.emulation"],
python_requires=">=3.5",
install_requires=["numpy",
"scipy",
"scikit-learn",
"networkx",
"matplotlib",
"tqdm"
],
test_requires=["pytest",
"pytest-cov",
"pytest-mock",
"coverage",
],
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"Intended Audience :: Science/Research",
],
cmdclass = {"pypi": PypiCommand,
"conda": CondaCommand
}
)