Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.cfg - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8de66e2a8fe873280ac6dc1f2dfed6065f20856f (plain)
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
[flake8]
ignore = 
exclude = .git,__pycache__,.gitlab
max-complexity = 15
builtins=_

[metadata]
name = gajim
version = attr: gajim.__version__
description = A GTK+ Jabber client
author = Philipp Hoerist, Yann Leboulanger
author_email = gajim-devel@gajim.org
url = https://gajim.org
license = GPL v3
classifiers =
    Programming Language :: Python :: 3

[options]
python_requires = >=3.5
packages = find:
test_suite = test
install_requires =
    cssutils>=1.0.2
    keyring
    nbxmpp>=0.9.91
    precis-i18n>=1.0.0
    pyOpenSSL>=16.2

[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*