forked from armorblox/armorblox-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.13 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
[tool.poetry]
name = "armorblox"
version = "0.1.0"
description = "Armorblox SDK for Python"
license="Apache-2.0"
authors = ["Rajat Upadhyaya <[email protected]>"]
readme="README.md"
repository="https://github.com/armorblox/armorblox-python-sdk"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.27.1"
cached-property = "^1.5.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-mock = "^3.7.0"
tox = "^3.24.5"
responses = "^0.18.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39
isolated_build = True
# skipsdist = true
[testenv]
whitelist_externals = poetry
deps =
pytest >= 3.0.0, <7
responses >= 0.18.0
commands = pytest -ra
"""