forked from seyoung-230/spheresmooth-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spheresmooth"
version = "0.1.2"
description = "Geometry-aware spline smoothing and geodesic modeling for spherical data in Python"
license = "GPL-3.0-or-later"
authors = [
{name = "Se-Young Lee", email = "sudang0404@gmail.com" },
{ name = "Kwan-Young Bak", email = "kybak@sungshin.ac.kr" }
]
maintainers = [
{ name = "Se-Young Lee", email = "sudang0404@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.24",
"pandas>=1.5"
]
[project.optional-dependencies]
viz = [
"matplotlib>=3.7",
"geopandas>=0.13"
]
[project.urls]
Homepage = "https://github.com/seyoung-230/spheresmooth-python"
[tool.setuptools.package-data]
spheresmooth = ["data/*.csv",
"data/world/*.shp",
"data/world/*.dbf",
"data/world/*.shx",
"data/world/*.prj",
"data/world/*.cpg",]
[tool.setuptools.packages.find]
exclude = ["assets"]