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

84 lines
1.9 KiB
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]
3 years ago
name = "spiel"
version = "0.2.1"
description = "A framework for building and presenting richly-styled presentations in your terminal using Python."
readme="README.md"
homepage="https://github.com/JoshKarpel/spiel"
documentation="https://spiel.readthedocs.io/en/latest/"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Multimedia :: Graphics :: Presentation",
"Typing :: Typed"]
authors = ["JoshKarpel <josh.karpel@gmail.com>"]
license = "MIT"
include = ["py.typed", "demo/*"]
[tool.poetry.dependencies]
python = "^3.9"
rich = "^10.2.2"
typer = "^0.3.2"
3 years ago
watchdog = "^2.0.2"
pendulum = "^2.1.2"
3 years ago
Pillow = "^8.2.0"
ipython = "^7.23.0"
ipykernel = "^5.5.3"
nbterm = ">=0.0.7,<0.0.11"
toml = "^0.10.2"
uniplot = "^0.4.4"
numpy = "^1.20.3"
[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.900"
3 years ago
pytest-mypy = "^0.8.1"
pytest-mock = "^3.5.1"
hypothesis = "^6.13.5"
Sphinx = "^4.0.2"
3 years ago
sphinx-rtd-theme = "^0.5.2"
sphinx-autobuild = "^2021.3.14"
line-profiler = "^3.2.6"
types-toml = "^0.1.3"
[tool.poetry.scripts]
3 years ago
spiel = 'spiel.main:app'
[tool.pytest.ini_options]
addopts = ["--strict-markers", "--mypy"]
testpaths = ["tests", "spiel"]
3 years ago
norecursedirs = ["demo"]
[tool.mypy]
pretty = false
files = ["spiel/*.py", "tests/*.py"]
exclude = "demo/"
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
ignore_missing_imports = true