forked from eblis/python-odata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 859 Bytes
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
[tool.poetry]
name = "python-odata"
version = "0.6.3.1"
description = "A simple library for read/write access to OData services."
license="MIT"
authors = ["Tuomas Mursu <tuomas.mursu@kapsi.fi>", "Cristian Libotean <eblis102@gmail.com>"]
readme = "README.md"
packages = [
{ include = "odata/*.py" },
]
include = [
{ path = "odata/reflect-templates", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.8"
requests = ">=2.32.0"
python-dateutil = ">=2.8.2"
rich = ">=13.3.1"
mako = ">=1.2.4"
[tool.poetry.group.dev.dependencies]
responses = ">=0.22.0"
pytz = ">=2022.7.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"