Skip to content

Commit

Permalink
Bump version, add numpy as setup dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
plant99 committed Jul 25, 2020
1 parent a64142c commit 0d3f4ea
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
long_description = fh.read()

dependencies = [
"numpy==1.19.1",
"click==7.1.2",
"requests==2.24.0",
"sat-search==0.2.3",
Expand All @@ -19,9 +18,11 @@
"opencv-python==4.3.0.36"
]

setup_dependencies = ['numpy>=1.7']

setup(
name="felicette",
version="0.1.2",
version="0.1.4",
url="https://github.com/plant99/felicette",
license="BSD",
author="Shivashis Padhi",
Expand All @@ -32,6 +33,7 @@
include_package_data=True,
zip_safe=False,
platforms="any",
setup_requires=setup_dependencies,
install_requires=dependencies,
entry_points={"console_scripts": ["felicette = felicette.cli:main",],},
classifiers=[
Expand Down

0 comments on commit 0d3f4ea

Please sign in to comment.