-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 1.92 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
[build-system]
requires = ["setuptools>=77", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "seiscat"
dynamic = ["version", "readme"]
authors = [
{ name = "Claudio Satriano", email = "satriano@ipgp.fr" },
]
description = "Keep a local seismic catalog"
license = "GPL-3.0-or-later"
license-files = ["LICENSE.txt"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.9"
dependencies = [
"obspy>=1.2.0",
"argcomplete",
"Pillow",
"rich",
"rich-argparse",
"windows-curses; sys_platform == 'win32'",
]
[project.optional-dependencies]
cartopy = [
"cartopy",
]
plotly = [
"plotly", "pandas"
]
folium = [
"folium"
]
[project.urls]
Homepage = "https://seiscat.seismicsource.org"
Source = "https://github.com/SeismicSource/seiscat"
Documentation = "https://seiscat.readthedocs.io"
[project.scripts]
seiscat = "seiscat.main:main"
[tool.setuptools]
include-package-data = true
platforms = [
"OS",
"Independent",
]
[tool.setuptools.packages.find]
include = ["seiscat", "seiscat.*"]
[tool.setuptools.package-data]
"*" = ["LICENSE"]
"seiscat.config" = ["*.conf"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "seiscat/_version.py"
versionfile_build = "seiscat/_version.py"
tag_prefix = "v"
parentdir_prefix = "seiscat-"
[tool.pylama]
skip = "build/*,*/_version.py,*/configobj/*"