forked from eblis/python-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 907 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
[tool.poetry]
name = "python-odata"
version = "0.5.4.3"
description = "A simple library for read/write access to OData services."
license = "MIT"
authors = ["Tuomas Mursu <[email protected]>", "Cristian Libotean <[email protected]>"]
readme = "README.md"
packages = [
{ include = "odata/*.py" },
]
include = [
{ path = "odata/reflect-templates", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
requests = ">=2.31"
python-dateutil = ">=2.8.2"
rich = ">=13.5"
mako = ">=1.2.4"
[tool.poetry.group.dev.dependencies]
responses = ">=0.22.0"
pytz = "^2022.7.1"
pre-commit = ">=3.4.0"
flake8 = "^6.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
myst-parser = ">=0.16"
sphinx = ">=4.0"
sphinx-autobuild = ">=2021.0"
sphinx-rtd-theme = ">=1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"