forked from Klimaat-Helpdesk/wagtail-helpdesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (58 loc) · 1.88 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
#!/usr/bin/env python
from os import path
from setuptools import find_packages, setup
from wagtail_helpdesk import __version__
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="wagtail-helpdesk",
version=__version__,
description="A Wagtail app aimed at answering questions by experts",
long_description=long_description,
long_description_content_type="text/markdown",
author="Four Digits",
author_email="[email protected]",
url="",
packages=find_packages(),
include_package_data=True,
license="BSD",
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD 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",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 5.0",
"Framework :: Wagtail :: 5.1",
"Framework :: Wagtail :: 5.2",
],
install_requires=[
"Django>=4.2,<4.3",
"Wagtail>=5.0,<5.3",
"django-allauth>=0.44,<1.0",
"django-crispy-forms>=1.0,<2.0",
"argon2-cffi>=21.0,<22.0",
"wagtail-modeladmin>=1.0,<3.0",
],
extras_require={
"testing": [
"dj-database-url>=1,<2",
"pytest>=7,<8",
"factory-boy>=3,<4",
"pytest-django>=4,<5",
"pytest-cov>=4,<5",
"wagtail-factories>=3,<5",
"django-webtest>=1,<2",
],
},
zip_safe=False,
)