-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (47 loc) · 1.64 KB
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
from setuptools import setup
import admin_list_controls
install_requires = [
"Django>=4.2",
"wagtail>=6.0",
"wagtail-modeladmin>=2.0",
]
testing_requires = ["django-webtest"]
setup(
name="wagtail-admin-list-controls",
version=admin_list_controls.__version__,
packages=["admin_list_controls"],
include_package_data=True,
description=(
"A UI toolkit to build custom filtering and other functionalities into "
"wagtail's admin list views."
),
long_description=(
"Documentation at https://github.com/ixc/wagtail-admin-list-controls"
),
author="The Interaction Consortium",
author_email="studio@interaction.net.au",
url="https://github.com/ixc/wagtail-admin-list-controls",
install_requires=install_requires,
license="MIT",
extras_require={"testing": testing_requires},
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Wagtail",
"Framework :: Wagtail :: 6",
"Framework :: Wagtail :: 7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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",
],
)