forked from rjb4standards/CISASAGReader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.55 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
50
51
52
53
54
[build-system]
requires = ["setuptools==75.6.0", "wheel==0.45.1", "setuptools-scm==8.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sag-reader"
description = "Python app to read CISA Software Acquisition Guide Spreadsheets based on CISA format https://cisa.gov/sag"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
requires-python = ">=3.10"
authors = [
{ name = "Richard (Dick) Brooks", email = "[email protected]" },
{ name = "Joseph Wortmann", email = "[email protected]" },
]
keywords = ["Software Acquisition Guide", "CISA", "Secure by Design"]
dynamic = ["version"]
dependencies = [
"openpyxl==3.1.5",
"pandas==2.2.3",
"typer==0.15.1",
"xlrd==2.0.1",
]
[project.scripts]
sag-reader = "sag_reader:main"
[project.optional-dependencies]
# If you have any optional dependencies, they would be listed here.
[project.urls]
Homepage = "https://github.com/rjb4standards/CISASAGReader"
Repository = "https://github.com/rjb4standards/CISASAGReader.git"
Issues = "https://github.com/rjb4standards/CISASAGReader/issues"
[tool.setuptools.packages.find]
include = ["*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"