-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 975 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
[tool.poetry]
name = "sempyver"
description = "Tool for teams to manage the CHANGELOG given a list of different changes."
authors = ["ricardoleal20 <[email protected]>"]
license = "MIT License"
readme = "README.md"
version = "0.0.0"
[tool.poetry.dependencies]
python = ">=3.7"
maturin = ">=1.5.1"
[tool.sempyver]
# Test file to ensure that you can find the version path to use
version_path = ["pyproject.toml", "Cargo.toml"]
[build-system]
requires = ["maturin>=1.5.1; python_version<'3.11'", "setuptools-rust>=1.4.0"]
build-backend = "maturin"
[project]
name = "sempyver"
requires-python = ">=3.8"
classifiers = [
"Topic :: Software Management :: Management Tools",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["maturin>=1.5.1 ; python_version>'3.8'"]
dynamic = ["authors", "description", "license", "readme", "version"]