~pjjw/cephfs-layout-tool

a1871ee7e2324e1f0b0d84dec60dc9469e8c078b — Peter Woodman 5 years ago aa52682
add pyproject.toml, remove kenneth reitz
2 files changed, 23 insertions(+), 13 deletions(-)

D Pipfile
A pyproject.toml
D Pipfile => Pipfile +0 -13
@@ 1,13 0,0 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
xattr = "*"
humanize = "*"

[requires]
python_version = "3"

A pyproject.toml => pyproject.toml +23 -0
@@ 0,0 1,23 @@
[tool.poetry]
name = "ceph_clean"
version = "0.1.0"
description = ""
authors = ["Peter Woodman"]

[tool.poetry.dependencies]
python = "^3.6"
xattr = "^0.9.7"
humanize = "^0.5.1"

[tool.poetry.dev-dependencies]
pylint = "^2.4"
mypy = "^0.750.0"
black = "^18.9b0"
flake8 = "^3.7"

[tool.black]
line-length = 100

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"