-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1003 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "md-insights-client"
version = "0.3.1"
authors = [
{ name="Darren Spruell", email="[email protected]" },
]
description = "OPSWAT MetaDefender InSights API client"
readme = "README.md"
dependencies = [
"PyYAML==6.0.2",
"requests==2.32.3",
"tabulate==0.9.0",
]
classifiers = [
# "Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python :: 3",
"Topic :: Security",
]
[project.scripts]
md-insights-snapshot-client = "md_insights_client.insights_snapshot:cli"
md-insights-query-client = "md_insights_client.insights_query:cli"
[project.urls]
"Bug Tracker" = "https://github.com/InQuest/md-insights-client-api/issues"
"Homepage" = "https://github.com/InQuest/md-insights-client-api"