-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.cfg
53 lines (47 loc) · 1.33 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
[metadata]
name = ovisbot
version = attr: ovisbot.__version__
description = A modular Discord bot for CTF teams
license = GPL-3.0
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
author = CYberMouflons
author_email = info@cybermouflons.com
url = https://github.com/cybermouflons/ovisbot
classifiers =
# List at https://pypi.org/pypi?%3Aaction=list_classifiers
Development Status :: 5 - Production/Stable
Framework :: AsyncIO
Framework :: Pytest
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Topic :: Communications :: Chat
Topic :: Documentation :: Sphinx
[options]
packages = ovisbot
python_requires = >=3.7.0
[options.entry_points]
console_scripts =
ovisbot=ovisbot.cli:cli
[options.packages.find]
include =
ovisbot
ovisbot.*
[extract_messages]
input_dirs = ovisbot
output_file = ovisbot/locale/ovisbot.pot
[flake8]
exclude =
.git,
__pycache__,
.pytest_cache,
venv
ignore = E203, E266, E501, W503, F403, F401, W605
# Put Error/Style codes here e.g. H301
select = B,C,E,F,W,T4,B9
max-line-length = 89
max-complexity = 18