forked from orisano/owiener
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (27 loc) · 817 Bytes
/
setup.py
File metadata and controls
38 lines (27 loc) · 817 Bytes
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
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):
"""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("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()
setup(
cmdclass={
"upload": UploadCommand,
},
)