-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.29 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.29 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
# -*- coding: utf-8 -*-
# =============================================================================
# Copyright (C) Les solutions géostack, Inc
#
# This file was produced as part of a research project conducted for
# The World Bank Group and is licensed under the terms of the MIT license.
#
# For inquiries, contact: info@geostack.ca
# Repository: https://github.com/geo-stack/hydrodepthml
# =============================================================================
from setuptools import setup
# Read the README file for long description
setup(
name="hydrodepthml",
version="0.1.0",
description=("Machine learning model for predicting water "
"table depth in crystalline basement aquifers"),
author="Les Solutions Géostack, Inc",
author_email="info@geostack.ca",
url="https://github.com/geo-stack/hydrodepthml",
license="MIT",
packages=['hdml'],
python_requires=">=3.11",
classifiers=[
"Development Status :: 4 - Beta:",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
],
)