ticketfrei4/setup.cfg

58 lines
1.1 KiB
INI

[metadata]
name = ticketfrei3
version = 0.0.1
author = 0x90.space
author_email = people@schleuder.0x90.space
description = Vermeidet Straftaten.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.0x90.space/0x90/ticketfrei3
project_urls =
Bug Tracker = https://git.0x90.space/0x90/ticketfrei3/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
aiosqlite
blacksheep
pydantic
tortoise-orm
uvicorn
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
ticketfrei3 = ticketfrei3:main
[tox:tox]
envlist = lint, py38, py39
isolated_build = True
[testenv:lint]
deps =
black
flake8
mypy
commands =
black --check --diff src tests
flake8 src tests
mypy --disallow-untyped-defs src tests
[testenv]
deps =
pytest
commands =
pytest tests
[flake8]
max_line_length = 88