diff --git a/pyproject.toml b/pyproject.toml index c97b79f..65b69be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "wells4hydrogeology" dynamic = ["readme"] license = {file = "LICENSE"} -version="0.0.7" +version="0.0.9" description = "A package to read in geology data from wells and create a layered, gridded hydrogeologic model of a study region, all within a python environment, automating and performing tasks often carried out in a dedicated GIS software." keywords = ["hydrogeology", "modflow", "water wells", "geology", 'water', 'geotechnical'] requires-python = "<3.13, >=3.9" diff --git a/setup.py b/setup.py index 4193406..4ab29c0 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ name="wells4hydrogeology", author= "Riley Balikian", author_email = "balikian@illinois.edu", - version="0.0.8", + version="0.0.9", install_requires=["geopandas", "rioxarray", "owslib", "scipy", "matplotlib", "pandas", "numpy"], long_description = long_description, long_description_content_type="text/markdown", - description="A package to read in geology data from wells and create a layered, gridded hydrogeologic model of a study region, all within a python environment, automating and performing tasks often carried out in a dedicated GIS software." + description="A package to read in geology data from wells and create a layered, gridded hydrogeologic model of a study region, all within a python environment, automating and performing tasks often carried out in a dedicated GIS software.", package_data={'w4h': ['resources/*']} )