-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
113 lines (98 loc) · 3.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import shutil
import sys
from setuptools import setup
name = "django-seriously"
package = "django_seriously"
description = (
"Opinionated collection of Django and DRF tools that came in handy time and again."
)
url = "https://github.com/tfranzel/django-seriously"
author = "T. Franzel"
author_email = "tfranzel@gmail.com"
license = "BSD"
with open("README.rst") as readme:
long_description = readme.read()
with open("requirements/base.txt") as fh:
requirements = [r for r in fh.read().split("\n") if not r.startswith("#")]
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, "__init__.py")).read()
return re.search("^__version__ = ['\"]([^'\"]+)['\"]", init_py, re.MULTILINE).group(
1
)
def get_packages(package):
"""
Return root package and all sub-packages.
"""
return [
dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, "__init__.py"))
]
version = get_version(package)
if sys.argv[-1] == "publish":
if os.system("pip freeze | grep twine"):
print("twine not installed.\nUse `pip install twine`.\nExiting.")
sys.exit(1)
os.system("python setup.py sdist bdist_wheel")
if os.system("twine check dist/*"):
print("twine check failed. Packages might be outdated.")
print("Try using `pip install -U twine wheel`.\nExiting.")
sys.exit(1)
if os.system("twine upload dist/*"):
print("failed to upload package")
sys.exit(1)
if os.environ.get("CI"):
os.system("git config user.name github-actions")
os.system("git config user.email github-actions@github.com")
os.system(f"git tag -a {version} -m 'version {version}'")
if os.system("git push --tags"):
print("failed pushing release tag")
sys.exit(1)
shutil.rmtree("dist")
shutil.rmtree("build")
shutil.rmtree("django_seriously.egg-info")
sys.exit()
setup(
name=name,
version=version,
url=url,
license=license,
description=description,
long_description=long_description,
long_description_content_type="text/x-rst",
author=author,
author_email=author_email,
packages=get_packages(package),
include_package_data=True,
python_requires=">=3.6",
install_requires=requirements,
extras_require={},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
],
project_urls={
"Source": "https://github.com/tfranzel/django-seriously",
},
)