Skip to content

Commit

Permalink
make sure, sub packages are correctly installed
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Maschler <[email protected]>
  • Loading branch information
Thomas Maschler committed Jul 15, 2019
1 parent 7487803 commit e8d4d04
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 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", "r") as fh:
long_description = fh.read()
Expand All @@ -12,16 +12,25 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wri/spotutil",
packages=["spotutil"],
install_requires=["click", "boto", "boto3", "prettytable", "urllib3==1.23", "pytz", "retrying", "requests"],
packages=find_packages(),
install_requires=[
"click",
"botocore",
"boto3",
"prettytable",
"urllib3<1.25,>=1.24.2",
"pytz",
"retrying",
"requests",
],
classifiers=(
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
entry_points='''
entry_points="""
[console_scripts]
spotutil=spotutil.spotutil:spotutil
''',
""",
)

0 comments on commit e8d4d04

Please sign in to comment.