-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathsetup.py
56 lines (50 loc) · 1.37 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
from os import path
from setuptools import setup, find_packages
try:
from wagtail.utils.setup import sdist
cmdclass = {
'sdist': sdist
}
except ModuleNotFoundError:
cmdclass = {}
from wagalytics import __version__
testing_extras = [
'pytest==5.3.1',
'pytest-django==3.7.0',
'wagtail-factories==2.0.0',
'factory-boy==2.11.0',
]
setup(
name='wagalytics',
version=__version__,
description='Show Google Analytics data in Wagtail.',
long_description='See https://github.com/tomdyson/wagalytics for details',
url='https://github.com/tomdyson/wagalytics',
author='Tom Dyson',
author_email='[email protected]',
license='MIT',
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Topic :: Internet :: WWW/HTTP',
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
keywords='development',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"wagtail>=2.0",
"Django>=2.0.13",
"oauth2client",
"wagtailfontawesome>=1.1.2",
"pyexcel-ods==0.5.3"
],
cmdclass=cmdclass,
extras_require={
'testing': testing_extras,
},
)