-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
131 lines (110 loc) · 3.86 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import codecs
import os
import re
import sys
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
def read(filepath):
return codecs.open(filepath, "r", "utf-8").read()
def get_entity(package, entity):
"""
eg, get_entity('spectator', 'version') returns `__version__` value in
`__init__.py`.
"""
with open(os.path.join(package, "__init__.py")) as f:
init_py = f.read()
find = f"__{entity}__ = ['\"]([^'\"]+)['\"]"
return re.search(find, init_py).group(1)
def get_version():
return get_entity("spectator", "version")
def get_license():
return get_entity("spectator", "license")
def get_author():
return get_entity("spectator", "author")
def get_author_email():
return get_entity("spectator", "author_email")
# Do `python setup.py tag` to tag with the current version number.
if sys.argv[-1] == "tag":
os.system(f"git tag -a {get_version()} -m 'version {get_version()}'")
os.system("git push --tags")
sys.exit()
# Do `python setup.py publish` to send current version to PyPI.
if sys.argv[-1] == "publish":
os.system("python setup.py sdist")
os.system(f"twine upload dist/django-spectator-{get_version()}.tar.gz")
sys.exit()
# Do `python setup.py testpublish` to send current version to Test PyPI.
if sys.argv[-1] == "testpublish":
os.system("python setup.py sdist")
os.system(
f"twine upload "
f"--repository-url https://test.pypi.org/legacy/ "
f"dist/django-spectator-{get_version()}.tar.gz"
)
sys.exit()
dev_require = [
"django-debug-toolbar",
"pre-commit",
"python-dotenv",
"pyupgrade",
"ruff",
"unittest-parametrize",
]
tests_require = dev_require + [
"factory-boy",
"freezegun",
"coverage[toml]",
]
setup(
name="django-spectator",
version=get_version(),
packages=["spectator"],
install_requires=[
"django-imagekit>=4.0,<6.0",
"hashids>=1.2.0,<1.4",
"piexif>=1.1.3,<2.0",
"pillow>=9.0.0,<11.0",
],
dependency_links=[],
tests_require=tests_require,
extras_require={"dev": dev_require + ["Django>=4.1,<=5.0"], "test": tests_require},
include_package_data=True,
license=get_license(),
description="A Django app to track book reading, movie viewing, "
"gig going, play watching, etc.",
long_description=read(os.path.join(os.path.dirname(__file__), "README.md")),
long_description_content_type="text/markdown",
url="https://github.com/philgyford/django-spectator",
author=get_author(),
author_email=get_author_email(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
keywords="",
project_urls={
"Blog posts": "https://www.gyford.com/phil/writing/tags/django-spectator/",
"Bug Reports": "https://github.com/philgyford/django-spectator/issues",
"Documentation": (
"https://github.com/philgyford/django-spectator/blob/master/README.md"
),
"Source": "https://github.com/philgyford/django-spectator",
},
)