-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.11 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
[project]
name = "arko-logger"
version = "0.1.3"
description = "A logger."
authors = [
{ name = "Karako", email = "[email protected]" },
]
dependencies = [
"rich>=13.7.0",
"msgspec>=0.18.5",
"pydantic>=2.5.2",
"pydantic-settings>=2.1.0",
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[[tool.poetry.source]]
name = "official-pypi"
url = "https://pypi.python.org/simple"
[tool.pdm]
[tool.pdm.build]
includes = ["src/arkologger", "LICENSE"]
[[tool.pdm.source]]
name = "official-pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true
[tool.pdm.dev-dependencies]
dev = [
"black>=23.12.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.black]
line-length = 88
target-version = ['py310']