-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
45 lines (40 loc) · 994 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
41
42
43
44
45
[build-system]
requires = ["hatchling", "wheel"]
build-backend = "hatchling.build"
[project]
name = "inquestlabs"
version = "1.2.4"
license = {file = "LICENSE"}
authors = [
{ name="InQuest", email="[email protected]" },
]
description = "A Pythonic interface and CLI tool for the InQuest Labs API"
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"attrs",
"certifi",
"charset-normalizer",
"docopt",
"idna",
"iniconfig",
"packaging",
"pluggy",
"py",
"pyparsing",
"requests",
"six",
"tomli",
"urllib3",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
[project.scripts]
inquestlabs = "inquestlabs:main"
[project.urls]
"Homepage" = "https://labs.inquest.net/"
"Repository" = "https://github.com/InQuest/python-inquestlabs"
"Bug Tracker" = "https://github.com/InQuest/python-inquestlabs/issues"