-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
45 lines (37 loc) · 930 Bytes
/
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
[metadata]
name = tbot
description = tbot embedded test & development automation tool
long_description = README.md
long_description_content_type = text/markdown
url = "https://tbot.tools"
license = "GPL-3.0-or-later"
license_file = LICENSE
platforms = unix, linux
project_urls =
Changelog=https://github.com/Rahix/tbot/blob/master/CHANGELOG.md
Source=https://github.com/Rahix/tbot
Tracker=https://github.com/Rahix/tbot/issues
[options]
install_requires =
termcolor2
python_requires = >=3.6
zip_safe = no
packages = find:
[options.packages.find]
include =
tbot
tbot.*
tbot_contrib
tbot_contrib.*
[options.entry_points]
console_scripts =
tbot=tbot.main:main
newbot=tbot.newbot:main
[options.package_data]
tbot = py.typed
tbot_contrib = py.typed
[flake8]
ignore = E203, E266, E501, F541, W503, D100, D104, D105, D202
max-line-length = 80
max-complexity = 22
select = B,C,E,F,W,T4,B9,D