This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
82 lines (70 loc) · 1.92 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
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 = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "uwloc-data"
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{ name = "University of Washington - SSEC", email = "carlosg@uw.edu" }
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"deprecated",
"ipykernel", # Support for Jupyter notebooks
"scipy",
"tiledb",
"typer",
"wavinfo",
"pandas>=2.0",
]
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov", # Used to report total code coverage
"pre-commit", # Used to run checks before finalizing a git commit
"sphinx==6.1.3", # Used to automatically generate documentation
"sphinx_rtd_theme==1.2.0", # Used to render documentation
"sphinx-autoapi==2.0.1", # Used to automatically generate api documentation
"black", # Used for static linting of files
"mypy", # Used for static type checking of files
"hatch",
"matplotlib",
"jupyter==1.0.0",
"types-pytz",
"types-python-dateutil",
]
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.sdist]
include = [
"src/uwloc",
]
[tool.hatch.build.targets.wheel]
packages = ["src/uwloc"]
[tool.hatch.version]
source = "vcs"
# [tool.setuptools_scm]
[tool.hatch.build.hooks.vcs]
version-file = "src/uwloc/data/_version.py"
[tool.black]
line-length = 110
[project.scripts]
wavdb = "uwloc.data.main:app"
[tool.mypy]
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"