-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (55 loc) · 1.4 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "marketplace-standard-app-api"
authors = [{name = "Carl Simon Adorf et al", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["version", "description"]
requires-python = ">=3.8,<4"
dependencies = [
"email-validator<=2.0, >=1.2.1",
"fastapi<=0.95.1, >0.75",
"python-multipart<=0.1, >0.0.5",
"requests<3.0, >2.26.0",
]
[project.urls]
Home = "https://github.com/materials-marketplace/standard-app-api"
[project.optional-dependencies]
cli = [
"click==8.1.3"
]
dev = [
"bumpver==2021.1114",
]
tests = [
"pytest==7.1.2",
]
[project.scripts]
marketplace-standard-app-api = "marketplace_standard_app_api.__main__:cli"
[tool.flit.module]
name = "marketplace_standard_app_api"
[tool.mypy]
plugins = ["pydantic.mypy"]
[tool.bumpver]
current_version = "v0.6.0"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
]
"marketplace_standard_app_api/version.py" = [
'__version__ = "{pep440_version}"'
]
"README.md" = [
"This repository contains the API version: {pep440_version}",
]
"openapi.json" = [
'"version": "{pep440_version}"'
]