-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (45 loc) · 1.41 KB
/
setup.py
File metadata and controls
52 lines (45 loc) · 1.41 KB
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
#!/usr/bin/env python
import sys, os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
# Hack to prevent "TypeError: 'NoneType' object is not callable" error
# in multiprocessing/util.py _exit_function when setup.py exits
# (see http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
except ImportError:
pass
PY3 = sys.version_info[0] == 3
install_requires = [
'wagtail>=1.5',
'django>=1.8',
'django-password-policies-iplweb>=0.4.4b1',
'django-axes>=2.0.0,<3.0.0',
'pyClamd>=0.3.17',
]
setup(
name='wagtailenforcer',
version='1.1.7',
description='WagtailEnforcer, the Wagtail arm of the law.',
author='Springload',
author_email='hello@springload.co.nz',
url='https://github.com/springload/wagtailenforcer/',
packages=find_packages(),
include_package_data=True,
license='BSD',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Framework :: Django',
],
install_requires=install_requires,
zip_safe=False,
)