-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
59 lines (55 loc) · 2.02 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
#!/usr/bin/env python
import io
from setuptools import find_packages, setup
test_requires = [
# Required for running the tests
"mock>=1.0.0",
# For coverage and PEP8 linting
"coverage>=3.7.0",
"flake8>=2.2.0",
# Required for matrix build on Travis
"tox==3.9.0",
"dj-database-url==0.5.0"
]
with io.open("README.md", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="wagtail_content_import",
version="0.12.2",
description="A module for Wagtail that provides functionality for importing page content from third-party sources.",
author="Samir Shah, Jacob Topp-Mugglestone, Karl Hobley, Matthew Westcott",
author_email="[email protected]",
url="https://github.com/torchbox/wagtail-content-import",
packages=find_packages(),
include_package_data=True,
license="BSD",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD 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",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Wagtail",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"Framework :: Wagtail :: 6",
"Topic :: Internet :: WWW/HTTP :: Site Management",
],
install_requires=["wagtail>=4.1", "python-docx>=0.8.10"],
extras_require={"testing": test_requires, },
zip_safe=False,
)