Mercurial > libervia-backend
annotate setup.py @ 2565:ea106dfa2145
setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 03 Apr 2018 09:04:55 +0200 |
parents | 6e5ab7bebd11 |
children | ecb14a6036ae |
rev | line source |
---|---|
884 | 1 #!/usr/bin/env python2 |
225 | 2 # -*- coding: utf-8 -*- |
3 | |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
4 # SAT: a jabber client |
1766 | 5 # Copyright (C) 2009-2016 Jérôme Poisson (goffi@goffi.org) |
6 # Copyright (C) 2013-2016 Adrien Cossa (souliane@mailoo.org) | |
238
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
7 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
8 # This program is free software: you can redistribute it and/or modify |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
9 # it under the terms of the GNU Affero General Public License as published by |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
10 # the Free Software Foundation, either version 3 of the License, or |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
11 # (at your option) any later version. |
238
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
12 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
13 # This program is distributed in the hope that it will be useful, |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
16 # GNU Affero General Public License for more details. |
238
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
17 |
609
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
18 # You should have received a copy of the GNU Affero General Public License |
84a6e83157c2
fixed licences in docstrings (they are now in comments)
Goffi <goffi@goffi.org>
parents:
607
diff
changeset
|
19 # along with this program. If not, see <http://www.gnu.org/licenses/>. |
238
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
20 |
2562 | 21 from setuptools import setup, find_packages |
2564
6e5ab7bebd11
setup: use constants to get name and version
Goffi <goffi@goffi.org>
parents:
2562
diff
changeset
|
22 from sat.core.constants import Const as C |
586
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
23 import os |
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
24 import sys |
2562 | 25 |
26 NAME = 'sat' | |
1100
2be46f391cfa
setup: SAT_INSTALL environment variable handles "clean" and "purge" options
souliane <souliane@mailoo.org>
parents:
1054
diff
changeset
|
27 |
2562 | 28 install_requires = [ |
29 'babel', | |
30 'dbus-python', | |
31 'html2text', | |
32 'jinja2', | |
33 'langid', | |
34 'lxml >= 3.1.0', | |
35 'markdown', | |
36 'miniupnpc', | |
37 'mutagen', | |
38 'netifaces', | |
39 'pillow', | |
40 'progressbar', | |
41 'pycrypto >= 2.6.1', | |
42 'pygments', | |
43 'pygobject', | |
44 'PyOpenSSL', | |
45 'python-potr', | |
46 'pyxdg', | |
47 'sat_tmp', | |
48 'service_identity', | |
49 'shortuuid', | |
50 'twisted >= 15.2.0', | |
51 'urwid >= 1.2.0', | |
52 'urwid-satext >= 0.6.1', | |
53 'wokkel >= 0.7.1', | |
54 ] | |
1123 | 55 |
1150
beaf8d4475e4
misc (D-Bus, installation): added a .service file for D-Bus auto-launch feature + installation from setup.py (path adaptation now use regex).
Goffi <goffi@goffi.org>
parents:
1138
diff
changeset
|
56 DBUS_DIR = 'dbus-1/services' |
beaf8d4475e4
misc (D-Bus, installation): added a .service file for D-Bus auto-launch feature + installation from setup.py (path adaptation now use regex).
Goffi <goffi@goffi.org>
parents:
1138
diff
changeset
|
57 DBUS_FILE = 'misc/org.goffi.SAT.service' |
beaf8d4475e4
misc (D-Bus, installation): added a .service file for D-Bus auto-launch feature + installation from setup.py (path adaptation now use regex).
Goffi <goffi@goffi.org>
parents:
1138
diff
changeset
|
58 |
2565
ea106dfa2145
setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
Goffi <goffi@goffi.org>
parents:
2564
diff
changeset
|
59 |
ea106dfa2145
setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
Goffi <goffi@goffi.org>
parents:
2564
diff
changeset
|
60 setup(name=NAME, |
2564
6e5ab7bebd11
setup: use constants to get name and version
Goffi <goffi@goffi.org>
parents:
2562
diff
changeset
|
61 version=C.APP_VERSION, |
2562 | 62 description=u'Salut à Toi multipurpose and multi frontend XMPP client', |
63 long_description=u'Salut à Toi (SàT) is a XMPP client based on a daemon/frontend architecture. Its multi frontend (desktop, web, console interface, CLI, etc) and multipurpose (instant messaging, microblogging, games, file sharing, etc).', | |
1123 | 64 author='Association « Salut à Toi »', |
65 author_email='contact@goffi.org', | |
2565
ea106dfa2145
setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
Goffi <goffi@goffi.org>
parents:
2564
diff
changeset
|
66 url=C.APP_URL, |
225 | 67 classifiers=['Development Status :: 3 - Alpha', |
68 'Environment :: Console', | |
69 'Framework :: Twisted', | |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
473
diff
changeset
|
70 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', |
225 | 71 'Operating System :: POSIX :: Linux', |
72 'Topic :: Communications :: Chat'], | |
2562 | 73 packages=find_packages() + ['twisted.plugins'], |
586
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
74 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), |
2562 | 75 (os.path.join('share/doc', NAME), ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), |
76 (os.path.join('share', DBUS_DIR), [DBUS_FILE]), | |
227 | 77 ], |
2562 | 78 scripts=['sat_frontends/jp/jp', 'sat_frontends/primitivus/primitivus', 'bin/sat'], |
230
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
79 zip_safe=False, |
2562 | 80 install_requires=install_requires, |
81 python_requires='~=2.7', | |
1846
fdc1dfcee35e
install: removed "nox" option as there is no more X dependency since WIX has been deprecated
Goffi <goffi@goffi.org>
parents:
1809
diff
changeset
|
82 ) |