-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.42 KB
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
[project]
name = "python-odata"
version = "0.7.0"
description = "A simple library for read/write access to OData services."
authors = [
{ name = "Tuomas Mursu", email = "tuomas.mursu@kapsi.fi" },
{ name = "Cristian Libotean", email = "eblis102@gmail.com" },
]
requires-python = ">=3.8"
readme = "README.md"
license = "MIT"
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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"requests>=2.32.0",
"python-dateutil>=2.8.2",
"rich>=13.3.1",
"mako>=1.2.4",
]
[dependency-groups]
dev = [
"responses>=0.22.0",
"pytz>=2022.7.1",
]
docs = [
"myst-parser>=0.16",
"sphinx>=4.0",
"sphinx-autobuild>=2021.0",
"sphinx-rtd-theme>=1.0",
]
[tool.uv]
default-groups = ["dev"]
[tool.hatch.build.targets.sdist]
include = ["odata/*.py"]
[tool.hatch.build.targets.sdist.force-include]
"odata/reflect-templates" = "odata/reflect-templates"
[tool.hatch.build.targets.wheel]
include = ["odata/*.py"]
[tool.hatch.build.targets.wheel.force-include]
"odata/reflect-templates" = "odata/reflect-templates"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"