diff --git a/setup.py b/setup.py index d3f855e..6dad4c9 100644 --- a/setup.py +++ b/setup.py @@ -19,13 +19,10 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() -# Read dependencies from requirements.txt -with open("requirements.txt", "r", encoding="utf-8") as req_file: - requirements = req_file.read().splitlines() setup( name="nmuwd", - version="0.9.3", + version="0.9.4", author="Jake Ross", description="New Mexico Water Data Integration Engine", long_description=long_description, @@ -35,7 +32,22 @@ "Programming Language :: Python :: 3", "Operating System :: OS Independent", ], - install_requires=requirements, + install_requires=[ + "flask", + "frost_sta_client", + "Geoalchemy2", + "geopandas", + "google-cloud-storage", + "gunicorn", + "httpx", + "mypy", + "pandas", + "psycopg2", + "pytest", + "pyyaml", + "types-pyyaml", + "urllib3>=2.2.0,<3.0.0", + ], entry_points={ "console_scripts": [ "die = frontend.cli:cli",