-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
66 lines (58 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "stor"
version = "4.1.0"
description = "Cross-compatible API for accessing Posix and OBS storage systems"
authors = ["Counsyl Inc. <[email protected]>"]
license = "MIT"
homepage = "https://counsyl.github.io/stor"
readme = "README.rst"
repository = "https://github.com/counsyl/stor"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.6"
requests = ">=2.20.0"
boto3 = ">=1.7.0"
cached-property = ">=1.5.1"
dxpy = ">=0.278.0"
python-keystoneclient = ">=1.8.1"
python-swiftclient = ">=3.6.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
vcrpy = "^4.0.2"
freezegun = "^0.3.15"
testfixtures = "^6.14.0"
sphinx = "^2.4.4"
sphinx_rtd_theme = "^0.4.3"
# without this poetry is unable to lock :(
docutils = "<0.16"
coverage = {extras = ["toml"], version = "^5.0.4"}
pytest-cov = "^2.8.1"
pytest = "^5.4.1"
[tool.poetry.scripts]
stor = "stor.cli:main"
[tool.coverage.run]
branch = true
source = ["stor"]
omit = [
"stor/tests/test_posix_path_compat.py",
"stor/tests/test_integration_swift.py",
"stor/tests/test_integration_s3.py",
"stor/tests/test_integration.py",
"stor/third_party/backoff.py",
"stor/tests/test_integration_dx.py",
]
[tool.coverage.report]
exclude_lines = [
# Have to re-enable the standard pragma
"pragma: no cover",
"raise NotImplementedError",
]
fail_under = 100
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"