-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (40 loc) · 1.39 KB
/
pyproject.toml
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
38
39
40
41
42
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "HydroGenerate"
version = "1.3.0"
dependencies = [
"requests",
"numpy",
"pandas",
"scipy",
"matplotlib",
"shapely"
]
requires-python = ">=3.8"
authors = [
{name = "Juan Gallego-Calderon", email = "[email protected]"},
{name = "Camilo Bastidas-Pacheco", email = "[email protected]"},
{name = "Soumyadeep Nag", email = "[email protected]"},
{name = "Bhaskar Mitra"},
{name = "Thomas Mosier", email= "[email protected]"},
{name = "Shiloh Elliot"}
]
maintainers = [
{name = "Juan Gallego-Calderon", email = "[email protected]"},
{name = "Camilo Bastidas-Pacheco", email = "[email protected]"},
]
description = "HydroGenerate is an open-source python library that has the capability of estimating hydropower generation based on flow and head."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["hydropower", "hydrokinetic", "potential"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3"
]
[project.urls]
Homepage = "https://idaholabresearch.github.io/HydroGenerate/"
Documentation = "https://idaholabresearch.github.io/HydroGenerate/"
Repository = "https://github.com/IdahoLabResearch/HydroGenerate"
"Bug Tracker" = "https://github.com/IdahoLabResearch/HydroGenerate"