fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/pyproject.toml

43 lines
824 B
TOML
Raw Normal View History

2019-09-23 18:10:42 +00:00
[tool.poetry]
name = "jeeves"
2020-05-09 17:30:49 +00:00
version = "0.1.0a3"
2019-09-23 18:10:42 +00:00
description = ""
authors = ["Felipe Martin <me@fmartingr.com>"]
[tool.poetry.scripts]
jeeves = "jeeves.cli:main"
2019-09-23 18:10:42 +00:00
[tool.poetry.dependencies]
python = "^3.7"
2019-09-30 15:53:56 +00:00
jinja2 = "^2.10"
2019-09-29 12:30:19 +00:00
pydantic = "^0.32.2"
click = "^7.0"
toml = "^0.10.0"
2020-01-05 17:16:35 +00:00
docker = "^4.1.0"
2020-04-29 18:30:11 +00:00
pyyaml = "^5.3.1"
2021-02-14 11:36:20 +00:00
quart = "^0.11.5"
2019-09-30 16:13:37 +00:00
2019-09-23 18:10:42 +00:00
[tool.poetry.dev-dependencies]
2020-01-05 11:15:22 +00:00
black = {version = "^18.3-alpha.0", allow-prereleases = true}
2019-09-23 18:10:42 +00:00
flake8 = "^3.7"
isort = "^4.3"
pre-commit = "^1.18"
rope = "^0.14.0"
ipdb = "^0.12.2"
2019-09-23 21:11:26 +00:00
pytest = "^5.1"
pytest-django = "^3.5"
pytest-tldr = "^0.2.1"
2019-10-03 11:01:21 +00:00
faker = "^2.0"
factory-boy = "^2.12"
2019-10-03 16:13:34 +00:00
sphinx = "^2.2"
doc8 = "^0.8.0"
sphinx-rtd-theme = "^0.4.3"
2019-10-06 11:27:15 +00:00
coverage = "^4.5"
pytest-cov = "^2.7"
pylint = "^2.4"
mypy = "^0.730.0"
2019-09-23 18:10:42 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"