-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
74 lines (66 loc) · 1.79 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
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "gio/_version.py"
[tool.setuptools.packages.find]
include = ["gio"]
[project]
name = "gio"
dynamic = ["version"]
requires-python = ">=3.8"
authors = [{ name="Agile Scientific", email="hello@agilescientific.com" },]
description = "Create xarray.DataArrays from various subsurface data formats."
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["data loading", "data management", "geoscience", "geospatial"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"scipy",
"xarray",
"matplotlib",
"shapely",
"zmapio",
"unmap"
]
[project.optional-dependencies]
geopandas = [
"geopandas",
]
dev = [
"build",
"pytest",
"coverage[toml]",
"pytest-cov",
"sphinx",
"sphinxcontrib-apidoc",
"sphinx_copybutton",
"furo",
"myst_nb",
"jupyter",
"requests",
"geopandas",
]
[project.urls]
"documentation" = "https://code.agilescientific.com/gio/"
"repository" = "https://github.com/agilescientific/gio"
[tool.pytest.ini_options]
# pytest configuration: http://doc.pytest.org/en/latest/customize.html
addopts = "--ignore=docs --cov=gio"
[tool.coverage.run]
# coverage configuration: https://coverage.readthedocs.io/
omit = [
"gio/__init__.py",
"gio/_version.py",
]