-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 963 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
[tool.poetry]
name = "temptree"
version = "0.2.1"
description = "Generates temporary files and directories from a tree"
license = "GPL-3.0-or-later"
authors = ["Damien Flament <damien.flament@gmx.com>"]
repository = "https://github.com/neimad/temptree"
documentation = "https://neimad.github.io/temptree"
readme = "README.md"
keywords = ["temporary", "filesystem", "doctest"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: System :: Filesystems",
"Topic :: Software Development :: Testing"
]
[tool.poetry.dependencies]
python = "~3.6 | ~3.7 | ~3.8"
[tool.poetry.dev-dependencies]
pre-commit = "^1.18"
invoke = "^1.3"
pytest = "^5.0"
pytest-cov = "^2.7"
hypothesis = "^4.36"
black = {version = "^19", allow-prereleases = true}
flake8 = "^3.7"
flake8-bugbear = "^19.3"
flake8-docstrings = "^1.3"
pdoc3 = "^0.6.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"