-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.39 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "config-versioned"
version = "0.2.0"
description = "Settings and file I/O management using a configuration YAML file"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Nathaniel Henry", email = "nat@henryspatialanalysis.com" }
]
keywords = ["versioning", "config", "yaml", "file-io", "data-pipeline"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = ["pyyaml>=6.0"]
[project.optional-dependencies]
pandas = ["pandas>=1.3"]
geo = ["geopandas>=0.12"]
raster = ["rasterio>=1.3"]
xarray = ["xarray>=2022.3"]
dbfread = ["dbfread>=2.0"]
excel = ["openpyxl>=3.0"]
all = [
"pandas>=1.3",
"openpyxl>=3.0",
"geopandas>=0.12",
"rasterio>=1.3",
"xarray>=2022.3",
"dbfread>=2.0",
]
docs = [
"sphinx>=7.0",
"furo>=2023.9.10",
]
dev = [
"pandas>=1.3",
"openpyxl>=3.0",
"pytest>=7.0",
"pytest-cov>=4.0",
]
[project.urls]
"Homepage" = "https://github.com/henryspatialanalysis/versioning"
"Bug Tracker" = "https://github.com/henryspatialanalysis/versioning/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"config_versioned" = ["data/*.yaml", "data/*.csv"]
[tool.pytest.ini_options]
testpaths = ["tests"]