-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.28 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""Setup script for the RivRetrieve package."""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
about = {}
with open("rivretrieve/__about__.py", "r") as fp:
exec(fp.read(), about)
setup(
name="rivretrieve",
version=about["__version__"],
author="RivRetrieve Python Contributors",
author_email="f.kratzert@gmail.com", # Replace with a valid email
description="A Python package for retrieving global river gauge data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/your_username/RivRetrieve-Python", # Replace with actual URL
packages=find_packages(),
include_package_data=True,
package_data={"rivretrieve": ["cached_site_data/*.csv"]},
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
],
python_requires=">=3.11",
)