-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (35 loc) · 1.23 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
#!/usr/bin/env python3
"""The setup script."""
import importlib.metadata
import os
import sys
from setuptools import setup
this_dir = os.path.abspath(os.path.dirname(__file__))
VERSIONFILE = os.path.join(this_dir, "commlib", "__init__.py")
VERSION = None
for line in open(VERSIONFILE, "r").readlines():
if line.startswith("__version__"):
VERSION = line.split('"')[1]
if not VERSION:
raise RuntimeError("No version defined in commlib.__init__.py")
if sys.argv[-1].startswith("publish"):
if os.system("pip list | grep wheel"):
print("wheel not installed.\nUse `pip install wheel`.\nExiting.")
sys.exit()
if os.system("pip list | grep twine"):
print("twine not installed.\nUse `pip install twine`.\nExiting.")
sys.exit()
os.system("python setup.py sdist bdist_wheel")
if sys.argv[-1] == "publishtest":
os.system("twine upload -r test dist/*")
else:
os.system("twine upload dist/*")
print("You probably want to also tag the version now:")
print(
" git tag -a {0} -m 'version {0}'".format(
importlib.metadata.version("commlib-py")
)
)
print(" git push --tags")
sys.exit()
setup(version=VERSION)