-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
66 lines (54 loc) · 1.74 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
from setuptools import setup, find_packages
from os import path
from foliage import __version__
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='wagtail-foliage',
version=__version__,
packages=find_packages(),
include_package_data=True,
description='Utilities for programatically constructing page trees in '
'Wagtail',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/harrislapiroff/wagtail-foliage',
author='Harris Lapiroff',
author_email='harris@freedom.press',
license='BSD-3-Clause',
install_requires=[
'typing>=3.6.6',
'wagtail>=1.11',
],
extras_require={
'docs': [
'Sphinx>=1.7',
'sphinx_rtd_theme>=0.4.0',
],
'test': [
'tox',
'pytest>=3.5',
'pytest-django>=3.2',
'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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
'Framework :: Wagtail',
'Framework :: Wagtail :: 1',
'Framework :: Wagtail :: 2',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)