-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.26 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
[project]
name = "tenpo"
version = "1.0.0"
description = ""
authors = [
{ name = "Gregory Danielson", email = "gregory.danielson3@gmail.com" },
]
dependencies = [
"skyfield",
"py-cord[speed]",
"datetime",
"pytest",
"python-dotenv",
"httpx",
"sqlalchemy[asyncio]",
"sqlalchemy-utils",
"aiosqlite",
"sqlalchemy-json",
"emoji",
"croniter>=1.4.1",
"pytimeparse>=1.1.8",
"sonatoki>=0.1.3",
]
requires-python = ">=3.10"
license = { text = "" }
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.isort]
length_sort = "1"
profile = "black"
sections = "STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
import_heading_stdlib = "STL"
import_heading_thirdparty = "PDM"
import_heading_firstparty = "LOCAL"
import_heading_localfolder = "LOCAL"
[tool.pyright]
include = ["src"]
exclude = ["**/__pycache__", "**/__pypackages__", "**/.venv"]
venvPath = "."
venv = ".venv"
executionEnvironments = [{ root = "." }]
[tool.pdm.dev-dependencies]
dev = [
"black>=23.1.0",
"isort~=5.9",
"pytest-asyncio>=0.20.3",
"line-profiler>=4.1.1",
"hypothesis>=6.86.1",
"pytest-skip-slow>=0.0.5",
]