33 lines
633 B
TOML
33 lines
633 B
TOML
[tool.black]
|
|
|
|
[tool.isort]
|
|
multi_line_output = 3
|
|
include_trailing_comma = true
|
|
force_grid_wrap = 0
|
|
use_parentheses = true
|
|
line_length = 88
|
|
|
|
[tool.poetry]
|
|
name = "memberPlumbing"
|
|
packages = [{ include = "memberPlumbing" }]
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Adam Goldsmith <adam@adamgoldsmith.name>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
requests = "^2.23.0"
|
|
"ruamel.yaml" = "^0.16.10"
|
|
bitstring = "^3.1.6"
|
|
lxml = "^4.5.0"
|
|
peewee = "^3.13.2"
|
|
mysqlclient = "^1.4.6"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
black = "^19.10b0"
|
|
isort = "^4.3.21"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|