-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·61 lines (57 loc) · 1.76 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
#!/usr/bin/env python
"""
Install wagtailnews using setuptools
"""
from setuptools import find_packages, setup
with open("wagtailnews/version.py", "r") as f:
version = None
exec(f.read())
with open("README.rst", "r") as f:
readme = f.read()
# Documentation dependencies
documentation_extras = [
"Sphinx>=1.4.6",
"sphinx-autobuild>=0.5.2",
"sphinx_rtd_theme>=0.1.8",
"sphinxcontrib-spelling==2.1.1",
"pyenchant==1.6.6",
]
setup(
name="wagtailnews",
version=version,
description="News / blog plugin for the Wagtail CMS",
long_description=readme,
author="Neon Jungle",
author_email="[email protected]",
url="https://github.com/neon-jungle/wagtailnews/",
install_requires=[
"wagtail>=5.2.0",
],
extras_require={"docs": documentation_extras},
zip_safe=False,
license="BSD License",
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
package_data={},
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"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",
"Framework :: Django",
"Framework :: Django :: 3",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"License :: OSI Approved :: BSD License",
],
)