forked from cfpb/wagtail-inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.19 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
from setuptools import find_packages, setup
install_requires = [
"tqdm==4.15.0",
"wagtail>=2.15,<3",
]
setup_requires = [
"setuptools-git-version==1.0.3",
]
testing_extras = [
"coverage>=3.7.0",
"mock>=1.0.0",
]
setup(
name="wagtail-inventory",
url="https://github.com/cfpb/wagtail-inventory",
author="CFPB",
author_email="[email protected]",
description="Lookup Wagtail pages by block content",
long_description=open("README.rst", "r", encoding="utf-8").read(),
license="CCO",
version="1.4",
version_format="{tag}.dev{commitcount}+{gitsha}",
include_package_data=True,
packages=find_packages(),
python_requires=">=3.6",
install_requires=install_requires,
setup_requires=setup_requires,
extras_require={"testing": testing_extras},
classifiers=[
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"License :: Public Domain",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)