-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.02 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
[tool.poetry]
name = "cyclonedx-conan"
version = "0.4.1"
description = "Creates CycloneDX Software Bill of Materials (SBOM) documents for C/C++ projects using Conan"
authors = ["Patrick Dwyer <[email protected]>"]
maintainers = [
"Patrick Dwyer <[email protected]>",
"Jan Kowalleck <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/CycloneDX/cyclonedx-conan#readme"
repository = "https://github.com/CycloneDX/cyclonedx-conan"
packages = [
{ include = "src" }
]
include = [
"LICENSE", "NOTICE"
]
[tool.poetry.dependencies]
python = "^3.6"
conan = "^1.41.0"
packageurl-python = "^0.9.6"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
cyclonedx-conan = 'src.command:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"