-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
85 lines (74 loc) · 2.12 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.poetry]
# base attributes
name = "fcpgtools"
version = "2.0.4"
description = "Tools to create Flow-Conditioned Parameter Grids (FCPGs) from Flow Direction Rasters (FDRs) and arbitrary rasterized parameter data."
authors = [
"Theodore Barnhart <[email protected]>",
"Xavier R Nogueira <[email protected]>",
"Seth Siefken <[email protected]>",
"August Raleigh Schultz <[email protected]>",
"Anthony Aufdenkampe <[email protected]>",
"Paul Tomasula <[email protected]>"
]
maintainers = [
"Xavier R Nogueira <[email protected]>",
"Theodore Barnhart <[email protected]>",
]
# links to information
repository = "https://code.usgs.gov/StreamStats/data-preparation/cpg/FCPGtools"
homepage = "https://usgs.github.io/water-fcpg-tools/"
readme = "README.md"
# package/modules to include
packages = [
{ include = "fcpgtools", from = "src"},
]
# PyPi classifiers and keywords
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
keywords = [
"hydrology",
"terrain",
"machine-learning",
"raster",
"flow-statistics",
]
# specify dependencies
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
# specify poetry build system
xarray = "^2023.1.0"
rasterio = "^1.3.4"
geopandas = "^0.12.2"
descartes = "^1.1.0"
rioxarray = "^0.13.3"
pysheds = "^0.3.3"
numba = "^0.56.4"
# fixes strange cffi issue with 1.15.1
cffi = "1.14.6"
[tool.poetry.group.dev.dependencies]
llvmlite = "^0.39.1"
jupyterlab = "*"
ipympl = "*"
nodejs = "*"
pydaymet = "^0.13.0"
python-lsp-server = "*"
pylsp-mypy = "*"
sphinx = "*"
sphinxcontrib-bibtex = "*"
numpydoc = "*"
sphinx_rtd_theme = "*"
myst-parser = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"