-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (88 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
99 lines (88 loc) · 2.03 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
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "floatcsep"
description = "CSEP Floating Experiment application"
readme = { file = "README.md", content-type = "text/markdown" }
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = [
"earthquake",
"forecasting",
"seismology",
"CSEP",
]
authors = [
{ name = "Pablo Iturrieta", email = "pciturri@gfz-potsdam.de" },
]
requires-python = ">=3.10,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
"dateparser",
"docker",
"gitpython",
"h5py",
"matplotlib",
"pandas",
"panel",
"packaging",
"pycsep",
"pyyaml",
"requests",
"scipy",
"seaborn",
"tables",
"xmltodict",
"weasyprint",
"markdown-it-py",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-autoapi",
"sphinx_design",
"sphinx-toolbox",
"sphinx-gallery",
"sphinx-rtd-theme",
"sphinx_copybutton",
"vcrpy",
]
[project.urls]
Homepage = "https://github.com/cseptesting/floatcsep.git"
[project.scripts]
floatcsep = "floatcsep.commands.main:floatcsep"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
include = ["floatcsep*"]
[tool.setuptools.package-data]
"floatcsep.postprocess" = ["assets/*.png", "assets/*.tff"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
fallback_version = "0.0.0"
[tool.pytest.ini_options]
norecursedirs = ["tutorials", "tests/artifacts"]
testpaths = [
"tests",
]
[tool.black]
line-length = 96
skip-string-normalization = false
target-version = ["py39", "py310", "py311", "py312"]
[tool.flake8]
ignore = ["E203", "W503", "F401"]
max-line-length = 96