-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
45 lines (35 loc) · 1.06 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
import os
import sys
from shutil import rmtree
from setuptools import setup, Command
class UploadCommand(Command):
"""Support setup.py upload."""
description = "Build and publish the package."
user_options = []
@staticmethod
def status(s):
pass
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.status("Removing previous builds…")
rmtree(os.path.join(os.path.dirname(__file__), "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/*")
self.status("Pushing git tags…")
os.system("git tag v2.8")
os.system("git push --tags")
sys.exit()
if __name__ == '__main__':
setup(
cmdclass={
"upload": UploadCommand,
},
)