-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
67 lines (59 loc) · 1.2 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = team_bot
version = 1.1.0
author = missytake
author_email = [email protected]
description = This bot connects your team to the outside and makes it addressable.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/deltachat-bot/team-bot
project_urls =
Bug Tracker = https://github.com/deltachat-bot/team-bot/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
click
pyinfra
pickleDB
qrcode
deltachat>=1.142.7
[options.extras_require]
dev =
pytest
tox
black
pytest-xdist
pytest-timeout
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
team-bot = team_bot.cli:main
[tox:tox]
envlist = lint, py310
isolated_build = True
[testenv:lint]
skip_install = True
deps =
black
flake8
commands =
black --check --diff src tests
flake8 src tests
[testenv]
passenv = *
deps =
pytest
pytest-xdist
pytest-timeout
commands =
pytest tests -n 6
[flake8]
max_line_length = 121