You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spiel/pyproject.toml

39 lines
741 B
TOML

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py36", "py37", "py38"]
include = "\\.pyi?$"
[tool.isort]
profile = "black"
line_length = 100
[tool.poetry]
name = "orate"
version = "0.1.0"
description = "Present slides in your terminal."
authors = ["JoshKarpel <josh.karpel@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
rich = "^10.0.0"
typer = "^0.3.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.2"
pytest-watch = "^4.2.0"
pytest-cov = "^2.11.1"
pytest-xdist = "^2.2.1"
mypy = "^0.812"
[tool.poetry.scripts]
orate = 'orate.main:app'
[tool.pytest.ini_options]
addopts = ['--strict-markers']
testpaths = ["tests"]