-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (42 loc) · 1.03 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
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.3.1",
"ipython>=8.12.2",
]
[project]
name = "lixinger"
version = "0.1.11"
description = "Lixinger SDK for Python (Unofficial)"
authors = [
{name = "Chaoying", email = "[email protected]"},
]
dependencies = [
"pandera>=0.14.5",
"pydantic>=1.10.7",
"requests>=2.29.0",
"dynaconf>=3.1.12",
"tenacity>=8.2.2",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
keywords = ["lixinger"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/Chaoyingz/lixinger"
Repository = "https://github.com/Chaoyingz/lixinger"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
cache_dir = ".pytest_cache/"
addopts = "-s -p no:warnings"
asyncio_mode = "auto"