-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.12 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
[tool.poetry]
name = "lib_version_remla"
version = "0.0.4"
description = "A small package which returns its own version."
authors = ["Jan <j2000.vdm@gmail.com>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project]
name = "lib_version_remla"
version = "0.0.4"
description = "A small package which returns its own version."
authors = [
{ name = "Jan", email="j2000.vdm@gmail.com" },
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/remla24-team10/lib-version"
[tool.poetry.dependencies]
python = "^3.11"
twine = ">=5.0.0"
[tool.build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[build-system]
requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
vcs = 'git'
style = 'pep440'