-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·67 lines (61 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
executable file
·67 lines (61 loc) · 1.65 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
[project]
# replace with your username:
name = "obsplotlib"
description = "Plotting Tools for waveforms from Obspy"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license = {file = "LICENSE", name = "GPLv3+"}
authors = [
{name = "Lucas Sawade", email = "lsawade@princeton.edu" }
]
maintainers = [
{name = "Lucas Sawade", email = "lsawade@princeton.edu"}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
keywords = [
"Obspy",
"Seismology",
"Plotting"
]
dependencies = [
"obspy",
"matplotlib",
"numpy",
"scipy"
]
[project.optional-dependencies]
# Add optional dependencies here. For example:
docs = [
"sphinx<6.0",
"furo",
"sphinx-design",
"sphinx_togglebutton",
"sphinx_gallery",
"numpydoc",
]
[project.urls] # Optional
"Homepage" = "https://github.com/lsawade/obsplotlib"
"Bug Reports" = "https://github.com/lsawade/obsplotlib/issues"
"Source" = "https://github.com/lsawade/obsplotlib"
"Documentation" = "http://lsawade.github.io/obsplotlib"
[project.scripts] # Optional
opl = "obsplotlib.__main.__:main"
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
# package-data = {"obsplotlib" = ["example_data/**"]}
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml]",
"wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/obsplotlib/_version.py"
version_scheme = "release-branch-semver"