-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
86 lines (79 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
from setuptools import find_packages, setup
from src.wagtail_live import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"wagtail>=2.12",
]
docs_requires = [
"mkdocs>=1.2,<1.3",
"mkdocs-material>=7.2,<7.3",
"mkdocstrings>=0.15.2,<0.16",
]
test_requires = [
"black==21.5b2",
"isort==5.8.0",
"flake8==3.9.2",
"pytest>=6.2,<6.3",
"pytest-cov>=2.12,<3",
"pytest-django>=4.3.0,<5",
"pytest-factoryboy>=2.1.0,<3",
"pytest-mock>=3.6.1,<3.7.0",
"pytest-asyncio>=0.15.1,<0.16",
"async_timeout>=3.0,<4.0",
"channels>=3.0.0,<4.0.0",
"aioredis>=2.0.0,<3",
"starlette>=0.16.0,<0.17",
"websockets>=9.0,<10",
"mock>=4.0.3,<5.0.0",
"wagtail-factories>=2.0.1,<3",
]
build_requires = [
"twine",
"check-wheel-contents",
]
setup(
name="wagtail-live",
version=__version__,
description="An app for high speed content publishing from a messaging app to a Wagtail site.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tidiane Dia and Wagtail Core Team",
author_email="hello@wagtail.io",
url="https://github.com/wagtail/wagtail-live/",
project_urls={
"Documentation": "https://wagtail.github.io/wagtail-live/",
"Source": "https://github.com/wagtail/wagtail-live/",
"Issue tracker": "https://github.com/wagtail/wagtail-live/issues/",
},
install_requires=install_requires,
tests_require=test_requires,
extras_require={
"test": test_requires,
"docs": docs_requires,
"build": build_requires,
},
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
zip_safe=False,
license="BSD-3-Clause",
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
)