Skip to content

Commit 00381ca

Browse files
committed
version bumps, package fixes
1 parent 8617948 commit 00381ca

6 files changed

Lines changed: 14 additions & 9 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ dist/
22
build/
33
*.pyc
44
.DS_Store
5+
*.egg-info

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
graft wagalytics
2+
global-exclude __pycache__
3+
global-exclude *.py[co]

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Wagtail Analytics
22

3-
This module provides a simple dashboard of Google Analytics data, integrated into the Wagtail admin UI.
3+
This module provides a simple dashboard of Google Analytics data, integrated into the Wagtail admin UI. Tested on Wagtail 1.3.
44

55
![Screenshot](screenshot.png)
66

@@ -21,3 +21,4 @@ This module provides a simple dashboard of Google Analytics data, integrated int
2121

2222
- [ ] allow configuration of results
2323
- [ ] better styling, e.g. using [chart.js](https://ga-dev-tools.appspot.com/embed-api/third-party-visualizations/)
24+
- [ ] fail gracefully if the relevant settings aren't available

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[metadata]
2+
description-file = README.md
3+
4+
[bdist_wheel]
5+
universal=1

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33
from codecs import open
44
from os import path
55

6-
here = path.abspath(path.dirname(__file__))
7-
8-
# Get the long description from the README file
9-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
10-
long_description = f.read()
11-
126
setup(
137
name='wagalytics',
148
version=__version__,
159
description='Show Google Analytics data in Wagtail.',
16-
long_description=long_description,
10+
long_description='See https://github.com/tomdyson/wagalytics for details',
1711
url='https://github.com/tomdyson/wagalytics',
1812
author='Tom Dyson',
1913
author_email='tom+wagalytics@torchbox.com',
@@ -30,6 +24,7 @@
3024
keywords='development',
3125
packages=find_packages(),
3226
include_package_data=True,
27+
zip_safe=False,
3328
install_requires=[
3429
"wagtail>=0.8.7",
3530
"Django>=1.7.1",

wagalytics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1'
1+
__version__ = '0.3'

0 commit comments

Comments
 (0)