forked from robotics-4-all/codintxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (62 loc) · 2.19 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
#!/usr/bin/env python
"""The setup script."""
import os
import sys
from setuptools import setup, find_packages
THIS_DIR = os.path.abspath(os.path.dirname(__file__))
VERSIONFILE = os.path.join(THIS_DIR, "tctt", "__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 tctt.__init__.py")
with open("requirements.txt") as f:
required = f.read().splitlines()
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(VERSION))
print(" git push --tags")
sys.exit()
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
author="Manos Tsardoulias",
author_email="[email protected]",
python_requires=">=3.5",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
description="",
license="MIT license",
long_description=readme,
package_data={"": ["*.tx"]},
keywords="tctt",
name="tctt",
packages=find_packages(include=["tctt", "tctt.*"]),
install_requires=required,
test_suite="tests",
url="https://github.com/robotics-4-all/tctt-dsl",
version=VERSION,
zip_safe=False,
)