-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 1.01 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
[tool.poetry]
name = "reactors"
version = "0.8.0"
description = "Software development kit for Tapis actors"
authors = ["Matthew W Vaughn", "Shweta Gopaulakrishnan", "Ethan Ho <[email protected]>"]
license = "bsd-2-clause"
include = ["src/**/*.yml", "src/**/*.jsonschema", "src/**/*.j2"]
[tool.poetry.dependencies]
python = ">=3.6"
agavepy = {git = "https://github.com/TACC/agavepy", rev = "master"}
requests_futures = ">=0.9.7"
pytz = "^2021.1"
petname = ">=2.2"
jsonschema = ">=3.0.0"
hashids = ">=1.2.0"
tacconfig = ">=0.5.4"
validators = "^0.18.2"
PyYAML = "^5.4.1"
[tool.poetry.dev-dependencies]
hypothesis = "^6.14.0"
pytest = "^6.2.4"
pytest-pythonpath = "^0.7.3"
polling2 = "^0.4.7"
pytest-cov = {version = "^2.12.1", python = ">=3.6,<4"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"tapis_auth: require cached Agave/Tapis v2 auth",
"loggly_auth: requires a Loggly customer token set in env (_TEST_LOGGLY_CUSTOMER_TOKEN)",
]