-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
54 lines (49 loc) · 1.53 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
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
# 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
setup(
name="wagtail-ab-testing",
version="0.6",
description="A/B Testing for Wagtail",
author="Karl Hobley",
author_email="[email protected]",
url="",
packages=find_packages(),
include_package_data=True,
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
],
install_requires=[
"Django>=2.2,<3.3",
"Wagtail>=2.11,<2.16",
"user-agents>=2.2,<2.3",
"numpy>=1.19.4,<1.20",
"scipy>=1.5.4,<1.6",
],
extras_require={
"testing": ["dj-database-url==0.5.0", "freezegun==0.3.15"],
},
zip_safe=False,
)