ticketfrei4/setup.cfg

58 lines
1.1 KiB
INI
Raw Permalink Normal View History

2021-11-15 23:56:58 +00:00
[metadata]
2021-12-28 05:11:42 +00:00
name = ticketfrei3
2021-11-15 23:56:58 +00:00
version = 0.0.1
2021-12-28 05:11:42 +00:00
author = 0x90.space
author_email = people@schleuder.0x90.space
description = Vermeidet Straftaten.
2021-11-15 23:56:58 +00:00
long_description = file: README.md
long_description_content_type = text/markdown
2021-12-28 05:11:42 +00:00
url = https://git.0x90.space/0x90/ticketfrei3
2021-11-15 23:56:58 +00:00
project_urls =
2021-12-28 05:11:42 +00:00
Bug Tracker = https://git.0x90.space/0x90/ticketfrei3/issues
2021-11-15 23:56:58 +00:00
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
2021-12-28 05:11:42 +00:00
install_requires =
aiosqlite
blacksheep
2021-12-29 01:52:08 +00:00
pydantic
2021-12-28 05:11:42 +00:00
tortoise-orm
uvicorn
2021-11-15 23:56:58 +00:00
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
2021-12-28 05:11:42 +00:00
ticketfrei3 = ticketfrei3:main
2021-11-15 23:56:58 +00:00
[tox:tox]
2021-11-18 01:09:18 +00:00
envlist = lint, py38, py39
2021-11-15 23:56:58 +00:00
isolated_build = True
2021-11-18 01:09:18 +00:00
[testenv:lint]
2021-11-17 22:46:38 +00:00
deps =
black
flake8
mypy
2021-11-15 23:56:58 +00:00
commands =
black --check --diff src tests
2021-11-17 22:46:38 +00:00
flake8 src tests
2021-11-18 00:59:09 +00:00
mypy --disallow-untyped-defs src tests
2021-11-18 01:09:18 +00:00
[testenv]
deps =
pytest
commands =
2021-11-15 23:56:58 +00:00
pytest tests
[flake8]
max_line_length = 88