-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (79 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
96 lines (79 loc) · 1.96 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aurora"
version = "0.6.1"
description = "Processing Codes for Magnetotelluric Data"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{name = "Karl Kappler", email = "karl.kappler@berkeley.edu"},
]
license = {text = "MIT license"}
keywords = ["aurora"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mth5>=0.6.0",
"numba>=0.58",
"obspy",
"psutil",
"setuptools<68", # Required for pkg_resources used by obspy
]
[project.urls]
Homepage = "https://github.com/simpeg/aurora"
[tool.setuptools.packages.find]
include = ["aurora", "aurora.*"]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]
[project.optional-dependencies]
test = [
"pytest>=3",
"pytest-runner",
"pytest-xdist",
"pytest-subtests",
"pytest-benchmark",
]
dev = [
"black",
"flake8",
"ipython",
"ipykernel",
"nbsphinx",
"numpydoc",
"papermill",
"pre-commit",
"pytest",
"pytest-benchmark",
"pytest-cov",
"pytest-subtests",
"pytest-xdist",
"toml",
"sphinx_gallery",
"sphinx_rtd_theme",
]
[tool.bumpversion]
current_version = "0.6.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "aurora/__init__.py"