This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
64 lines (58 loc) · 1.89 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
#!/usr/bin/env python
from wagtailsurveys import __version__
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
# Testing dependencies
testing_extras = [
# Required for running the tests
'mock>=1.0.0',
# For coverage and PEP8 linting
'coverage>=3.7.0',
'flake8>=2.2.0',
]
setup(
name='wagtailsurveys',
version=__version__,
description='A module for Wagtail that provides functionality of polls and surveys.',
author='Mikalai Radchuk',
author_email='[email protected]',
url='https://github.com/torchbox/wagtailsurveys',
packages=find_packages(),
include_package_data=True,
license='BSD',
long_description='See https://github.com/torchbox/wagtailsurveys for details',
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Wagtail',
'Framework :: Wagtail :: 1',
'Framework :: Wagtail :: 2',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'Django>=1.8.1,<1.12',
'wagtail>=1.4,<=2.3',
'Unidecode>=0.04.14',
],
extras_require={
'testing': testing_extras,
},
zip_safe=False,
)