forked from marteinn/wagtail-color-panel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
62 lines (56 loc) · 2.01 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
import io
import re
from pathlib import Path
from setuptools import find_packages, setup
install_requires = ["wagtail>=5.2"]
tests_require = ["pytest-django", "wagtail-factories", "pytest"]
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
version = ""
with io.open("wagtail_color_panel/__init__.py", "r", encoding="utf8") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
setup(
version=version,
name="wagtail-color-panel",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
author="Martin Sandström",
author_email="martin@marteinn.se",
url="https://github.com/marteinn/wagtail-color-panel",
packages=find_packages(
exclude=("*.tests", "*.tests.*", "tests.*", "tests", "example*")
),
include_package_data=True,
install_requires=install_requires,
zip_safe=False,
tests_require=tests_require,
extras_require={"test": tests_require},
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 5",
"Framework :: Wagtail :: 6",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
],
setup_requires=["setuptools_scm", "pytest-runner"],
python_requires=">=3.9",
)