Skip to content

Commit

Permalink
Added Poetry supprot.
Browse files Browse the repository at this point in the history
  • Loading branch information
madpah committed Sep 2, 2021
1 parent 3ad394c commit e9a67f8
Show file tree
Hide file tree
Showing 2 changed files with 245 additions and 0 deletions.
226 changes: 226 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[tool.poetry]
name = "cyclonedx"
version = "0.0.1"
description = "A library for producing CycloneDX SBOM (Software Bill of Materials) files."
authors = ["Paul Horton <phorton@sonatype.com>"]
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "^3.9"
packageurl-python = "^0.9.4"
requirements_parser = "^0.2.0"
setuptools = "^50.3.2"

[tool.poetry.dev-dependencies]
tox = "^3.24.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e9a67f8

Please sign in to comment.