verificationbot/setup.cfg

54 lines
1.1 KiB
INI
Raw Permalink Normal View History

2023-05-19 17:03:34 +00:00
[metadata]
name = verificationbot
version = 0.0.1
author = missytake
author_email = missytake@systemli.org
2023-05-22 08:50:18 +00:00
description = A Delta Chat bot to use group join QR codes if you are offline often.
2023-05-19 17:03:34 +00:00
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.0x90.space/missytake/verifcationbot
project_urls =
Bug Tracker = https://git.0x90.space/missytake/verifcationbot/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 =
deltachat
click
2023-05-19 17:03:34 +00:00
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
2023-05-19 18:26:24 +00:00
verificationbot = verificationbot.cli:cli_main
2023-05-19 17:03:34 +00:00
[tox:tox]
2023-05-19 18:26:24 +00:00
envlist = lint, py310
2023-05-19 17:03:34 +00:00
isolated_build = True
[testenv:lint]
skip_install = True
deps =
black
flake8
commands =
black --check --diff src tests
flake8 src tests
[testenv]
deps =
pytest
commands =
pytest tests
[flake8]
2023-05-19 18:26:24 +00:00
max_line_length = 100