-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.7 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
##
# Python Project file for APPCLI.
# _____________________________________________________________________________
#
# Created by brightSPARK Labs
# www.brightsparklabs.com
##
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "env"
variable = "APP_VERSION"
[tool.hatch.build.targets.wheel]
packages = ["appcli"]
[project.urls]
Homepage = "https://www.brightsparklabs.com"
Repository = "https://github.com/brightsparklabs/appcli"
Changelog = "https://github.com/brightsparklabs/appcli/blob/master/CHANGELOG.md"
[project]
name = "bsl-appcli"
dynamic = ["version"]
requires-python = ">= 3.12.3"
description = "A library for adding CLI interfaces to applications in the brightSPARK Labs style."
readme = { file = "README.adoc", content-type = "text/plain" }
license = {text = "MIT License"}
authors = [{name = "brightSPARK Labs", email = "enquire@brightsparklabs.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"boto3==1.42.50",
"click==8.3.1",
"coloredlogs==15.0.1",
"cronex==0.1.3.1",
"dataclasses-json==0.5.7",
"deepdiff==8.6.1",
"GitPython==3.1.46",
"jsonschema==4.26.0",
"jinja2==3.1.6",
"pycryptodome==3.23.0",
"pydantic==2.12.5",
"pyfiglet==1.0.4",
"python-keycloak==3.12.0",
"python-slugify==8.0.4",
"ruamel-yaml==0.19.1",
"tabulate==0.9.0",
]
[dependency-groups]
dev = [
"bandit==1.9.3",
"guarddog==2.7.0",
"pdoc==16.0.0",
"pre-commit==4.5.1",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"ruff==0.15.1",
]
build = [
"hatch==1.16.3",
"wheel==0.46.3",
]