-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 922 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""Setup project"""
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="wells4hydrogeology",
author="Riley Balikian",
author_email="balikian@illinois.edu",
version="0.0.25",
package_data={'w4h':
['resources/*', 'resources/sample_data/*',
'resources/sample_data/statewide_sample_data/*',
'resources/sample_data/DictionaryTerms/*',
'resources/sample_data/LithologyInterpretations/*']},
install_requires=["geopandas", "rioxarray", "owslib", "scipy",
"matplotlib", "pandas", "numpy"],
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
)