generated from MartinHowarth/python-template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (31 loc) · 775 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
[tool.poetry]
name = "s3os"
version = "1.0.0"
description = "S3 Object Store. Store and retrieve python objects in s3 simply."
license = "MIT"
authors = [
"Martin Howarth <howarth.martin@gmail.com>"
]
readme = 'README.md'
repository = "https://github.com/MartinHowarth/s3os"
homepage = "https://github.com/MartinHowarth/s3os"
keywords = []
[tool.poetry.dependencies]
python = "^3.8"
toml = "^0.9"
boto3 = "^1.10.50"
"ruamel.yaml" = "^0.16.5"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
flake8 = "^3.7.9"
pydocstyle = "^5.0.1"
mypy = "^0.750"
pytest = "^5.3.1"
pytest-subtests = "^0.2.1"
mock = "^3.0.5"
pytest-mock = "^1.13.0"
[tool.pytest]
mock_use_standalone_module = true
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"