-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
62 lines (56 loc) · 1.52 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
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "taegis-magic"
dynamic = ["version"]
description = "Taegis IPython Magics"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [{ name = "Micah Pegman", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"taegis-sdk-python",
"ipython",
"notebook",
"nbformat",
"nbclient",
"nbconvert",
"ipylab",
"papermill",
"typer",
"pandas",
"pandas[excel]",
"Jinja2",
"compress_pickle>=2.1.0",
"gql",
"dataclasses_json",
"click",
"requests",
"ipynbname",
"panel",
"tabulator",
]
[project.optional-dependencies]
dev = ["black", "pylint", "jupyter"]
[project.scripts]
taegis = "taegis_magic.cli:cli"
[project.urls]
"Homepage" = "https://github.com/secureworks/taegis-magic"
"Bug Reports" = "https://github.com/secureworks/taegis-magic/issues"
"Source" = "https://github.com/secureworks/taegis-magic"
"Package" = "https://pypi.org/project/taegis-magic/"
[tool.hatch.version]
path = "taegis_magic/_version.py"
[tool.hatch.build.targets.sdist]
include = ["/taegis_magic"]