forked from labd/wagtailstreamforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (63 loc) · 1.95 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
#!/usr/bin/env python
from setuptools import setup
from codecs import open
from os import path
from wagtailstreamforms import __version__
tests_require = [
"mock==4.0.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>=2,<2.10'
]
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='[email protected]',
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',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)