Skip to content

Commit e9a67f8

Browse files
committed
Added Poetry supprot.
1 parent 3ad394c commit e9a67f8

File tree

2 files changed

+245
-0
lines changed

2 files changed

+245
-0
lines changed

poetry.lock

Lines changed: 226 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[tool.poetry]
2+
name = "cyclonedx"
3+
version = "0.0.1"
4+
description = "A library for producing CycloneDX SBOM (Software Bill of Materials) files."
5+
authors = ["Paul Horton <[email protected]>"]
6+
license = "Apache-2.0"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.9"
10+
packageurl-python = "^0.9.4"
11+
requirements_parser = "^0.2.0"
12+
setuptools = "^50.3.2"
13+
14+
[tool.poetry.dev-dependencies]
15+
tox = "^3.24.3"
16+
17+
[build-system]
18+
requires = ["poetry-core>=1.0.0"]
19+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)