-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (34 loc) · 1.19 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
[project]
name = "r3threatmodeling"
license = {text = "Apache-2.0"}
description = "r3threatmodeling tool for structuring and reporting"
dynamic=["version", "dependencies"]
readme="README.md"
authors = [ {name="David Cervigni", email="[email protected]"}, { name="James Brown" } ]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 1 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "r3threatmodeling.__version__"}
dependencies = {file = ["src/r3threatmodeling/requirements.txt"]}
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"r3threatmodeling" = ["**/*.mako"]
"r3threatmodeling.assets" = ["**"]
"r3threatmodeling.scripts" = ["**"]
[tool.setuptools.exclude-package-data]
"r3threatmodeling" = ["tests*"]
[project.urls]
"Homepage" = "https://github.com/corda/threat-model-tool/"
"Bug Tracker" = "https://github.com/corda/threat-model-tool/issues"