-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (48 loc) · 1.13 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
[metadata]
name = deltawoot
version = 1.3.1
author = missytake
author_email = [email protected]
description = A deltachat client for chatwoot, so users can talk to chatwoot encrypted.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/deltachat-bot/deltawoot
project_urls =
Bug Tracker = https://github.com/deltachat-bot/deltawoot/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
[options.entry_points]
console_scripts =
deltawoot = deltawoot.recv:main
[options]
package_dir =
= src
packages = find:
include_package_data = True
python_requires = >=3.10
install_requires =
deltachat-rpc-client
deltachat-rpc-server
ConfigArgParse
requests
flask
sentry-sdk[flask]
[options.extras_require]
dev =
pytest
pytest-timeout
[options.packages.find]
where = src
[tox:tox]
envlist = lint, py310
isolated_build = True
[testenv:lint]
skip_install = True
deps =
black
commands =
black --check --diff --line-length 120 src
[flake8]
max_line_length = 88