forked from openmobilityfoundation/mds-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (36 loc) · 860 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
41
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
classifiers = ["Programming Language :: Python :: 3 :: Only"]
description = "Utilities and tests for the MDS OpenAPI repo"
dependencies = [
"jsonschema>=4.18.0a6",
"PyYAML",
"pytest",
"referencing>=0.28",
]
license = { file = "LICENSE" }
name = "mds-openapi"
readme = "README.md"
requires-python = ">=3.9"
version = "2.0"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
]
notebooks = [
"ipykernel",
]
[project.urls]
Code = "https://github.com/openmobilityfoundation/mds-openapi"
Issues = "https://github.com/openmobilityfoundation/mds-openapi/issues"
# Configuration for black
[tool.black]
line-length = 127
target-version = ['py310']
include = '\.pyi?$'
[tool.setuptools]
packages = ["tests"]