-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 925 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "obsarray"
dynamic = ["version"]
description = "Measurement data handling in Python"
authors = [
{ name="CoMet Toolkit Team", email="team@comet-toolkit.org" }
]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.8"
dependencies = [
"comet_maths",
"netcdf4",
"xarray"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"tox",
"sphinx",
"sphinx_design",
"sphinx_book_theme",
"ipython",
"sphinx_autosummary_accessors"
]
[project.urls]
"Homepage" = "https://github.com/comet-toolkit/obsarray"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["tests"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "obsarray/_version.py"
versionfile_build = "obsarray/_version.py"
tag_prefix = "v"
parentdir_prefix = ""