-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (68 loc) · 1.67 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "motion-base"
description = "a strong motion database"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["earthquake"]
authors = [{ name = "Theodore Chang", email = "[email protected]" }]
maintainers = [{ name = "Theodore Chang", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"bcrypt",
"beanie",
"celery",
"elasticsearch[async]",
"email-validator",
"fastapi-slim",
"httpx",
"joserfc",
"mongoengine",
"numba",
"Pint",
"python-dotenv",
"python-multipart",
"requests",
"scipy",
"structlog",
"uvicorn",
]
[project.optional-dependencies]
dev = [
"locust",
"pytest-asyncio",
"pytest-celery",
"pytest-cov",
"pytest-xdist",
"ruff",
]
client = [
"httpx-auth",
"matplotlib",
"rich",
]
[project.urls]
"Homepage" = "https://github.com/TLCFEM/motion-base"
"Bug Reports" = "https://github.com/TLCFEM/motion-base/issuess"
"Source" = "https://github.com/TLCFEM/motion-base"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore::DeprecationWarning:",
]
[tool.pyright]
venvPath = "."
venv = ".venv"