-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
39 lines (34 loc) · 937 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
[project]
name = "NGPIris"
version = "5.1.0"
readme = "README.md"
dependencies = [
"requests >= 2.31.0",
"urllib3 == 1.26.19",
"requests >= 2.31.0",
"boto3 >= 1.26.76",
"parse >= 1.19.1",
"tqdm >= 4.66.2",
"click >= 8.1.7",
"bitmath == 1.3.3.1",
"tabulate == 0.9.0"
]
authors = [
{name = "Erik Brink", email = "[email protected]"},
{name = "Isak Sylvin", email = "[email protected]"}
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["NGPIris", "NGPIris.hci", "NGPIris.hcp", "NGPIris.parse_credentials", "NGPIris.utils", "NGPIris.cli"]
[tool.pytype]
inputs = ["NGPIris"]
[tool.pytest.ini_options]
pythonpath = [
"."
]
filterwarnings = "ignore::urllib3.connectionpool.InsecureRequestWarning"
[project.scripts]
iris = "NGPIris.cli:cli"
iris_generate_credentials_file = "NGPIris.cli:iris_generate_credentials_file"