-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
115 lines (81 loc) · 2.83 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import os
import sys
from setuptools import Command, setup
from shutil import rmtree
# path of the directory where this file is located
here = os.path.abspath(os.path.dirname(__file__))
# What packages are required for this module to be executed?
REQUIRED = ["dm-tree", "numpy", "scipy", "pandas", "scikit-learn", "packaging", "pyyaml"]
EXTRAS = {"dev": ["twine", "black"]}
class UploadCommand(Command):
"""Support setup.py upload."""
description = "Build and publish the package."
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status("Removing previous builds…")
rmtree(os.path.join(here, "dist"))
except OSError:
pass
self.status("Building Source and Wheel (universal) distribution…")
os.system("{0} setup.py sdist bdist_wheel --universal".format(sys.executable))
self.status("Uploading the package to PyPI via Twine…")
os.system("twine upload dist/*")
sys.exit()
class TestUploadCommand(Command):
"""Support setup.py testupload."""
description = "Build and publish the package to test.pypi."
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status("Removing previous builds…")
rmtree(os.path.join(here, "dist"))
except OSError:
pass
self.status("Building Source and Wheel (universal) distribution…")
os.system("{0} setup.py sdist bdist_wheel --universal".format(sys.executable))
self.status("Uploading the package to PyPI via Twine…")
os.system("twine upload --repository-url https://test.pypi.org/legacy/ dist/*")
sys.exit()
class TestInstallCommand(Command):
"""Support setup.py testinstall"""
description = "Install metalgpy from TestPyPI."
user_options = []
@staticmethod
def status(s):
"""Prints things in bold."""
print("\033[1m{0}\033[0m".format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
self.status("Downloading the package from Test PyPI and installing it")
os.system("pip install --index-url https://test.pypi.org/simple/ metalgpy")
sys.exit()
# Where the magic happens:
setup(
install_requires=REQUIRED,
extras_require=EXTRAS,
cmdclass={
"upload": UploadCommand,
"testupload": TestUploadCommand,
"testinstall": TestInstallCommand,
},
)