-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (57 loc) · 1.43 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
[build-system]
requires = ["setuptools>=38.4", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "faceted"
authors = [{name = "Spencer Clark", email = "spencerkclark@gmail.com"}]
license = {file = "LICENSE"}
description = "Figures with precise control over overall width, plot aspect ratio, between-plot spacing, and colorbar dimensions."
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.11"
dependencies = ["matplotlib>=1.5", "numpy >= 1.7"]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["cartopy", "coveralls", "pytest", "pytest-cov"]
docs = [
"cartopy",
"cftime",
"ipython",
"jupyter",
"nc-time-axis",
"netCDF4",
"numpydoc",
"pooch",
"sphinx",
"sphinx-gallery",
"sphinx_rtd_theme",
"xarray"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Documentation = "https://faceted.readthedocs.io/en/latest/"
Repository = "https://github.com/spencerkclark/faceted.git"
[tool.ruff]
exclude = [
".eggs",
"doc",
"__init__.py"
]
[tool.ruff.lint]
ignore = [
"E731",
"F401"
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "faceted.faceted.__version__"}