-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3eab47
commit 8f1f348
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
|
@@ -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", | ||
|
@@ -24,6 +24,7 @@ | |
'License :: OSI Approved :: MIT License', | ||
], | ||
keywords="cogeo COG", | ||
packages=find_packages(exclude=["tests"]), | ||
include_package_data=True, | ||
install_requires=[ | ||
"aioboto3", | ||
|