Skip to content

Commit

Permalink
add find package, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
geospatial-jeff committed May 26, 2020
1 parent c3eab47 commit 8f1f348
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

with open("README.md") as f:
desc = f.read()
Expand All @@ -8,7 +8,7 @@
description="Asynchronous cogeotiff reader",
long_description=desc,
long_description_content_type="text/markdown",
version="0.0.1",
version="0.0.2",
author=u"Jeff Albrecht",
author_email="[email protected]",
url="https://github.com/geospatial-jeff/aiocogeo",
Expand All @@ -24,6 +24,7 @@
'License :: OSI Approved :: MIT License',
],
keywords="cogeo COG",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=[
"aioboto3",
Expand Down

0 comments on commit 8f1f348

Please sign in to comment.