-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 1.84 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
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools" ]
[project]
name = "centerline-width"
version = "v2.0.1"
description = "A Python package to find the centerline and width of rivers based on the latitude and longitude of the right and left bank"
readme = "README.md"
keywords = [
"centerline",
"centerline-detection",
"centerline-extraction",
"fluvial",
"geomorphology",
"geophysics",
"hydrology",
"limnology",
"networkx",
"python",
"river-bank",
"river-bank-length",
"rivers",
"voronoi",
]
license = "MIT"
authors = [
{ name = "Cora Schneck", email = "cyschneck@gmail.com" },
{ name = "Una Schneck", email = "ugschneck@gmail.com" },
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"geopy",
"haversine",
"matplotlib",
"networkx",
"numpy",
"pandas",
"pykml",
"pyproj",
"scipy",
"shapely",
]
optional-dependencies.dev = [
"pre-commit",
"pytest",
"pytest-cov",
]
urls.Issues = "https://github.com/cyschneck/centerline-width/issues"
urls.Repository = "https://github.com/cyschneck/centerline-width"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [ "." ]
include = [ "centerline_width" ]
exclude = [ "centerline_width/pytests*" ]