-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
69 lines (58 loc) · 1.93 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
from setuptools import setup, find_packages
from os import path
from wagtailautocomplete import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='wagtail-autocomplete',
version=__version__,
packages=find_packages(),
include_package_data=True,
description='An Autocomplete edit handler for Pages, Snippets, and more.',
long_description=long_description,
url='https://github.com/wagtail/wagtail-autocomplete',
author='Emily Horsman and Harris Lapiroff',
author_email='[email protected]',
license='BSD-3-Clause',
install_requires=[
'wagtail>=4.1',
],
extras_require={
'docs': [
'Sphinx>=1.7',
'sphinx_rtd_theme>=0.4.0',
],
'test': [
'tox',
'pytest>=3.5',
'pytest-django>=3.2',
'beautifulsoup4>=4.8',
'html5lib>=0.999999999',
'pytest-pythonpath>=0.7.2',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)