-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.03 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
[tool.poetry]
name = "blood-hound-python-client"
version = "2.0.0"
description = "A client library for accessing BloodHound API"
authors = ["SpecterOps <info@specterops.io>"]
license = "APACHE"
readme = "README.md"
homepage = "https://github.com/SpecterOps/bloodhound-python-sdk"
repository = "https://github.com/SpecterOps/bloodhound-python-sdk"
keywords = ["bloodhound", "api", "sdk", "client"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "blood_hound_api_client", from = "sdk" },
{ include = "auth" },
{ include = "examples" }
]
include = [
"sdk/blood_hound_api_client/py.typed",
"README.md",
"CHANGELOG.md"
]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.27"
attrs = ">=21.3.0"
python-dateutil = "^2.8.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"