-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (61 loc) · 1.93 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
[tool.poetry]
authors = [
"Daniele Guido <[email protected]>",
"Roman Kalyakin <[email protected]",
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "A Library to interact with the Impresso API"
homepage = "https://github.com/impresso/impresso-py"
license = "AGPL-3.0-or-later"
name = "impresso"
packages = [
{include = "impresso", from = "."},
]
readme = "README.md"
repository = "https://github.com/impresso/impresso-py"
version = "0.9.9"
[tool.poetry.urls]
Endpoint = "https://impresso-project.ch/public-api"
Issues = "https://github.com/impresso/impresso-py/issues"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[virtualenvs]
in-project = true
[tool.poetry.dependencies]
PyJWT = "^2.8.0"
PyYAML = "^6.0.2"
attrs = "^23.2.0"
httpx = "^0.27.0"
matplotlib = "^3.7.0"
pandas = "^2.1.0"
pandas-stubs = "^2.2.1.240316"
protobuf = "^5.27.2"
pydantic = "^2.6.4"
python = "^3.10.0 || ^3.11.0"
python-dateutil = "^2.8.0"
types-PyYAML = "^6.0.12.20240311"
types-protobuf = "^5.27.0.20240626"
[tool.poetry.dev-dependencies]
black = "24.3.0"
datamodel-code-generator = "0.25.6"
flake8 = "7.0.0"
mypy = "1.9.0"
# openapi-python-client = "0.19.1"
# Waiting for a PR to be accepted. Meanwhile update with:
openapi-python-client = {git = "https://github.com/theorm/openapi-python-client.git#name=openapi-python-client", branch = "develop"}
pytest = "8.1.1"
[tool.mypy]
exclude = ["impresso/api_client", "impresso/protobuf"]
[tool.poetry.scripts]
generate-client = "scripts.scripts:generate_api_client"
generate-protobuf = "scripts.scripts:generate_protobuf"