-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1.15 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
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hydrophone-downloader"
version="0.1.0"
description = "A CLI tool for downloading hydrophone data based on location and time bounds."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name="Bret Nestor", email="[email protected]" }
]
# Dependencies
dependencies = [
"hydra-core",
"python-dotenv",
"requests",
"obspy",
"gitpython",
"onc",
"ffmpeg",
"bs4",
"polars"
]
# Entry points to expose command-line interfaces
[project.scripts]
hydrophone-downloader = "hydrophone_downloader.cli:main"
hydrophone-downloader-set-token = "hydrophone_downloader.cli:set_token"
[tool.setuptools]
packages = ["hydrophone_downloader", "supported_classes"]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.package-data]
"hydrophone_downloader" = ["configs/*.yaml"]
[tool.hydra]
default_config_dir = "src/configs"
[tool.hydra.defaults]
configs = ["config.yaml", "token_config.yaml"]
[tool.hydra.run]
config_file = "config.yaml"
[tool.hydra.token]
token_file = "token_config.yaml"