-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 953 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tdvms"
authors = [
{name = "Rıdvan Örsvuran", email = "[email protected]"},
]
description = "A client for downloading continuous seismic data from AFAD TDVMS"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["seismology", "seismic data", "tdvms"]
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
]
dependencies = [
"requests",
"obspy",
"matplotlib",
"cartopy",
"pyyaml",
"tqdm"
]
dynamic = ["version"]
[tool.setuptools]
packages = ["tdvms"]
[project.scripts]
tdvms_download = "tdvms.download:download"
tdvms_check_zipfiles = "tdvms.check_zipfiles:check_zipfiles_command"
[tool.setuptools.dynamic]
version = {attr = "tdvms.VERSION"}