forked from CivicActions/ssp-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 959 Bytes
/
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
[tool.poetry]
name = "ssp-toolkit"
version = "0.1.0"
description = ""
authors = ["Tom Camp <tom.camp@civicactions.com>"]
readme = "README.md"
packages = [
{include = "tools"}
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.6"
pyyaml = "^6.0.1"
pyyaml-include = "^1.3.1"
jinja2 = "^3.1.2"
md-toc = "^9.0.0"
rtyaml = "^1.0.0"
pydantic = "^1.10.12"
blinker = "^1.6.2"
slugify = "^0.0.1"
complianceio = {git = "https://github.com/CivicActions/compliance-io.git"}
pytest = "^7.4.0"
pypandoc = "^1.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
createfiles = "tools.createfiles.createfiles:main"
creatematrix = "tools.creatematrix.creatematrix:main"
exportto = "tools.exportto.exportto:main"
makefamilies = "tools.makefamilies.makefamilies:main"
sop = "tools.sop.sop:main"
makessp = "tools.makessp.makessp:main"
[[tool.mypy.overrides]]
module = "yaml"
ignore_missing_imports = true