-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.04 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
[project]
name = "datacontract-specification"
version = "1.2.3" # in sync with spec
description = "The Pydantic Model of the Data Contract Specification"
readme = "README.md"
authors = [
{ name = "Jochen Christ", email = "jochen.christ@innoq.com" },
{ name = "Stefan Negele", email = "stefan.negele@innoq.com" },
{ name = "Simon Harrer", email = "simon.harrer@innoq.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.8.0",
"pyyaml>=6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[project.urls]
Homepage = "https://github.com/datacontract/datacontract-specification-python"
Issues = "https://github.com/datacontract/datacontract-specification-python/issues"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = [
"I", # re-order imports in alphabetic order
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"