Skip to content

Commit

Permalink
Merge c7aa753 into ea0587c
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 25, 2019
2 parents ea0587c + c7aa753 commit a1b6147
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ install:
- pip install -U pyopenssl
- pip install coverage
- travis_retry pip install coveralls
- travis_retry pip install -r requirements.txt
- travis_retry sudo apt-get --quiet=2 install perceptualdiff
- pip install -e .

# we only have gdal in system packages
- if [ "$TRAVIS_PYTHON_VERSION" == "2.7_with_system_site_packages" ]; then pushd depends && ./install_gdal.sh && popd; fi
Expand Down
2 changes: 1 addition & 1 deletion heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
except ImportError:
import pickle

__version__ = '1.13'
__version__ = '1.14.dev0'


class Coordinate(object):
Expand Down
2 changes: 0 additions & 2 deletions requirements.txt

This file was deleted.

5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license_file = LICENSE
38 changes: 38 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
from setuptools import setup

with open("README.md") as f:
long_description = f.read()

setup(
name="sethoscope-heatmap",
version="1.14.dev0",
description="Generate high quality heatmaps from coordinate data",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="heatmap coordinate GPS map",
author="Seth Golub",
author_email="tmp+17657@sethoscope.net",
url="http://www.sethoscope.net/heatmap/",
license="GPLv3",
py_modules=["heatmap"],
zip_safe=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=["osmviz", "pillow"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Visualization",
],
entry_points={"console_scripts": ["heatmap=heatmap:main"]},
)

0 comments on commit a1b6147

Please sign in to comment.