forked from gajim/gajim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (44 loc) · 927 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
46
47
48
[flake8]
ignore =
exclude = .git,__pycache__,.gitlab
max-complexity = 15
builtins=_
[metadata]
name = gajim
version = attr: gajim.__version__
description = A GTK XMPP client
author = Philipp Hoerist, Yann Leboulanger
author_email = [email protected]
url = https://gajim.org
license = GPL v3
classifiers =
Programming Language :: Python :: 3
[options]
python_requires = >=3.7
packages = find:
test_suite = test
install_requires =
css-parser
keyring
nbxmpp>=0.9.94
packaging
precis-i18n>=1.0.0
pyOpenSSL>=16.2
pycairo>=1.16.0
[options.package_data]
gajim =
data/activities/*/*/*.png
data/emoticons/*/*.png
data/emoticons/*/LICENSE
data/gui/*.ui
data/icons/hicolor/*/*/*.png
data/icons/hicolor/*/*/*.svg
data/moods/*/*.png
data/other/*
data/sounds/*.wav
data/style/*.css
data/plugins/*/*
[options.packages.find]
exclude =
gajim.dev
test*