-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 985 Bytes
/
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
[project]
name = "constellationPy"
version = "1.2.1"
description = "Client Python pour le réseau Constellation."
authors = [
{name = "Julien Jean Malard-Adam", email = "[email protected]"},
]
dependencies = [
"trio-websocket<1.0.0,>=0.11.0",
"pandas<3.0.0,>=2.0.3",
"trio<1.0.0,>=0.23.1",
"semantic-version<3.0.0,>=2.8.5",
"click<9.0.0,>=8.0.3",
"click-default-group<2.0.0,>=1.2.2",
"urllib3<3.0.0,>=2.0.4",
"appdirs<2.0.0,>=1.4.4",
"requests>=2.32.3",
"numpy>=1.26.4",
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = {text = "AGPL-3.0"}
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"coverage<8.0.0,>=7.2.7",
]
test = [
"pytest>=7.4.3",
"pytest-trio>=0.8.0",
"coverage>=7.3.3",
]
[tool.pdm.scripts]
test = "pdm run pytest"
cov = "pdm run coverage run -m pytest"
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"