Skip to content

Commit

Permalink
adding setup requires directly
Browse files Browse the repository at this point in the history
  • Loading branch information
dwr-psandhu committed Dec 17, 2024
1 parent d082a69 commit 8ea3d08
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,8 @@ def read(*parts):
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="For reading/writing HEC-DSS files",
install_requires=requirements,
Expand All @@ -104,8 +102,8 @@ def read(*parts):
include_package_data=True,
keywords="pyhecdss",
packages=find_packages(include=["pyhecdss"]),
setup_requires=setup_requirements,
python_requires="~=3.5",
setup_requires=["numpy", "versioneer", "pytest-runner"],
python_requires="~=3.11",
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/dwr-psandhu/pyhecdss",
Expand Down

0 comments on commit 8ea3d08

Please sign in to comment.