-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "earthscopestraintools"
version ="0.1.42"
authors = [
{ name="Mike Gottlieb", email="[email protected]" },
]
description = "A collection of utilities for working with EarthScope strainmeter data"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"scipy>=1.10.1",
"numpy>=1.24.1",
"pandas[performance]>=2.1.0",
"requests>=2.28.2",
#"xmltodict>=0.13.0",
"geopy>=2.3.0",
"numexpr>=2.8.4"
]
[project.optional-dependencies]
mseed = [ "obspy>=1.4.0" ]
tiledb = ["tiledb==0.23.0", "pyarrow==13.0.0"]
plotting = ["ipympl>=0.9.3"]
[project.urls]
"Homepage" = "https://gitlab.com/earthscope/gds/strain/earthscopestraintools"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
earthscopestraintools = ["*.txt", "*.rst"]