-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (41 loc) · 1.4 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
47
48
49
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[project]
dynamic = ['version']
name = 'cryptobom-forge'
description = 'Generate a cryptographic bill of materials from CodeQL output!'
dependencies = [
'click >= 8.0.0',
'cyclonedx-python-lib @ git+ssh://[email protected]/pre-quantum-research/cyclonedx-python-lib.git@cbom#egg=cyclonedx-python-lib',
'jsonschema >= 2.0.0',
'pyyaml >= 3.10',
'requests >= 2.3.0'
]
requires-python = '>=3.10'
authors = [
{name = "Emile El-Qawas"},
{name = "Mark Carney", email="[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ['cbom', 'codeql', 'cryptocheck', 'cryptography', 'pqc']
classifiers = [
'Development Status :: 3 - Beta',
'Environment :: Console',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security',
'Topic :: Security :: Cryptography'
]
[project.scripts]
cryptobom = 'cbom.cli.cli:start'
[project.urls]
Repository = "https://github.com/santandersecurityresearch/cryptobom-forge.git"
Issues = "https://github.com/santandersecurityresearch/cryptobom-forge/issues"
Changelog = "https://github.com/santandersecurityresearch/cryptobom-forge/blob/main/CHANGELOG.rst"
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = 'cbom.__version__'}