Skip to content

Commit 1184b26

Browse files
committed
Update version and fix Markdown long description
1 parent 1b00eca commit 1184b26

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

bandicoot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828

2929
import bandicoot.helper.tools
3030

31-
__version__ = "0.5.0"
31+
__version__ = "0.5.1"

bandicoot/tests/samples/regressions/ego.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"reporting__antennas_path": "samples/towers.csv",
55
"reporting__attributes_path": "samples/attributes",
66
"reporting__recharges_path": "samples/attributes",
7-
"reporting__version": "0.5.0",
8-
"reporting__code_signature": "90e12e22bc3c1282c9e7f610bf26ee84287e5945",
7+
"reporting__version": "0.5.1",
8+
"reporting__code_signature": "796cf443dbafff33b798aa2c2fc1eabc89f96928",
99
"reporting__groupby": "week",
1010
"reporting__split_week": true,
1111
"reporting__split_day": true,

bandicoot/tests/samples/regressions/empty_user.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"reporting__antennas_path": null,
55
"reporting__attributes_path": null,
66
"reporting__recharges_path": null,
7-
"reporting__version": "0.5.0",
8-
"reporting__code_signature": "90e12e22bc3c1282c9e7f610bf26ee84287e5945",
7+
"reporting__version": "0.5.1",
8+
"reporting__code_signature": "796cf443dbafff33b798aa2c2fc1eabc89f96928",
99
"reporting__groupby": "week",
1010
"reporting__split_week": true,
1111
"reporting__split_day": true,

bandicoot/tests/samples/regressions/manual_a.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"reporting__antennas_path": "samples/towers.csv",
55
"reporting__attributes_path": null,
66
"reporting__recharges_path": null,
7-
"reporting__version": "0.5.0",
8-
"reporting__code_signature": "90e12e22bc3c1282c9e7f610bf26ee84287e5945",
7+
"reporting__version": "0.5.1",
8+
"reporting__code_signature": "796cf443dbafff33b798aa2c2fc1eabc89f96928",
99
"reporting__groupby": "week",
1010
"reporting__split_week": true,
1111
"reporting__split_day": true,

bandicoot/tests/samples/regressions/manual_a_orange_network.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"reporting__antennas_path": null,
55
"reporting__attributes_path": "samples/attributes",
66
"reporting__recharges_path": "samples/attributes",
7-
"reporting__version": "0.5.0",
8-
"reporting__code_signature": "90e12e22bc3c1282c9e7f610bf26ee84287e5945",
7+
"reporting__version": "0.5.1",
8+
"reporting__code_signature": "796cf443dbafff33b798aa2c2fc1eabc89f96928",
99
"reporting__groupby": "week",
1010
"reporting__split_week": true,
1111
"reporting__split_day": true,

bandicoot/tests/samples/regressions/sample_user.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"reporting__antennas_path": null,
55
"reporting__attributes_path": null,
66
"reporting__recharges_path": null,
7-
"reporting__version": "0.5.0",
8-
"reporting__code_signature": "90e12e22bc3c1282c9e7f610bf26ee84287e5945",
7+
"reporting__version": "0.5.1",
8+
"reporting__code_signature": "796cf443dbafff33b798aa2c2fc1eabc89f96928",
99
"reporting__groupby": null,
1010
"reporting__split_week": true,
1111
"reporting__split_day": true,

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@
22

33
from setuptools import setup
44

5+
try:
6+
import pypandoc
7+
long_description = pypandoc.convert('README.md', 'rst')
8+
except(IOError, ImportError):
9+
long_description = open('README.md').read()
10+
11+
512
setup(
613
name='bandicoot',
714
author='Yves-Alexandre de Montjoye',
815
author_email='[email protected]',
9-
version="0.5",
16+
version="0.5.1",
1017
url="https://github.com/yvesalexandre/bandicoot",
1118
license="MIT",
1219
packages=[
@@ -16,6 +23,7 @@
1623
],
1724
include_package_data=True,
1825
description="A toolbox to analyze mobile phone metadata.",
26+
long_description=long_description,
1927
classifiers=[
2028
'Environment :: Plugins',
2129
'Intended Audience :: Science/Research',

0 commit comments

Comments
 (0)