forked from jberghoef/wagtail-tag-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (57 loc) · 1.77 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
from setuptools import find_packages, setup
install_requires = [
"wagtail>=2.11,<2.15",
"selenium>=3.141.0,<3.142.0",
]
tests_require = [
"factory_boy==3.2.0",
"Faker==6.1.1",
"flake8-blind-except",
"flake8-debugger",
"flake8-imports",
"flake8",
"freezegun==1.1.0",
"pycodestyle==2.6.0",
"pytest-cov==2.11.1",
"pytest-django==4.1.0",
"pytest-pythonpath==0.7.3",
"pytest-randomly==3.5.0",
"pytest-sugar==0.9.4",
"pytest==6.2.2",
"wagtail_factories==2.0.1",
]
docs_require = ["sphinx>=2.4.0"]
with open('README.md') as fh:
long_description = fh.read()
setup(
name="wagtail-tag-manager",
version="1.1.0",
description="A Wagtail add-on for managing tags.",
author="Jasper Berghoef",
author_email="[email protected]",
url="https://github.com/jberghoef/wagtail-tag-manager",
install_requires=install_requires,
tests_require=tests_require,
extras_require={"docs": docs_require, "test": tests_require},
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
license="BSD 3-Clause",
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Wagtail :: 2",
],
)