forked from labd/wagtailstreamforms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
77 lines (67 loc) · 2.14 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
#!/usr/bin/env python
from codecs import open
from os import path
from setuptools import setup
from wagtailstreamforms import __version__
tests_require = [
"mock==4.0.2",
"pytest-django==4.7.0",
"pytest==7.3.2",
# Linting
"isort[pyproject]==4.3.21",
"flake8==3.7.9",
"flake8-blind-except==0.1.1",
"flake8-debugger==3.1.0",
]
install_requires = [
"wagtail>=4.1,<5.3",
"Unidecode>=0.04.14,<2.0",
"wagtail-generic-chooser>=0.5.0,<0.7",
]
documentation_extras = [
"sphinxcontrib-spelling>=2.3.0",
"Sphinx>=1.5.2",
"sphinx-autobuild>=0.6.0",
"karma_sphinx_theme>=0.0.6",
]
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="wagtailstreamforms",
version=__version__,
description="Wagtail forms in a streamfield",
long_description=long_description,
author="Stuart George",
author_email="stuart@accentdesign.co.uk",
url="https://github.com/AccentDesign/wagtailstreamforms/",
download_url="https://pypi.python.org/pypi/wagtailstreamforms",
license="MIT",
packages=["wagtailstreamforms"],
install_requires=install_requires,
extras_require={
"docs": documentation_extras,
"test": tests_require,
},
include_package_data=True,
keywords=["wagtail", "streamfield", "forms", "accent", "design"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 4",
"Topic :: Internet :: WWW/HTTP :: Site Management",
],
)