Mercurial > libervia-backend
annotate setup.py @ 2574:fbcdb761981c
setup: use NAME to get version
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 05 Apr 2018 17:42:05 +0200 |
parents | 7e7f4e344a96 |
children | cb7bf936d8e8 |
rev | line source |
---|---|
884 | 1 #!/usr/bin/env python2 |
225 | 2 # -*- coding: utf-8 -*- |
3 | |
2574 | 4 # SAT: an XMPP 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 |
586
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
22 import os |
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
23 import sys |
2562 | 24 |
25 NAME = 'sat' | |
1100
2be46f391cfa
setup: SAT_INSTALL environment variable handles "clean" and "purge" options
souliane <souliane@mailoo.org>
parents:
1054
diff
changeset
|
26 |
2562 | 27 install_requires = [ |
28 'babel', | |
29 'dbus-python', | |
30 'html2text', | |
31 'jinja2', | |
32 'langid', | |
33 'lxml >= 3.1.0', | |
34 'markdown', | |
35 'miniupnpc', | |
36 'mutagen', | |
37 'netifaces', | |
38 'pillow', | |
39 'progressbar', | |
40 'pycrypto >= 2.6.1', | |
41 'pygments', | |
42 'pygobject', | |
43 'PyOpenSSL', | |
44 'python-potr', | |
45 'pyxdg', | |
2567
ecb14a6036ae
setup: minimal version of sat_tmp is 0.0.3
Goffi <goffi@goffi.org>
parents:
2565
diff
changeset
|
46 'sat_tmp>=0.0.3', |
2562 | 47 'service_identity', |
48 'shortuuid', | |
49 'twisted >= 15.2.0', | |
50 'urwid >= 1.2.0', | |
51 'urwid-satext >= 0.6.1', | |
52 'wokkel >= 0.7.1', | |
53 ] | |
1123 | 54 |
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
|
55 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
|
56 DBUS_FILE = 'misc/org.goffi.SAT.service' |
2574 | 57 with open(os.path.join(NAME, 'VERSION')) as f: |
2571
4aca060075b7
setup: version is now set in SAT/VERSION, sat is not imported anymore in setup
Goffi <goffi@goffi.org>
parents:
2567
diff
changeset
|
58 VERSION = f.read().strip() |
2572 | 59 is_dev_version = VERSION.endswith('D') |
60 | |
61 | |
62 def sat_dev_version(): | |
63 """Use mercurial data to compute version""" | |
64 def version_scheme(version): | |
65 return VERSION | |
66 | |
67 def local_scheme(version): | |
68 # XXX: setuptools_scm seems buggy and the '+' and the '_' are replaced by '-' | |
69 # breaking the local version identifier scheme | |
70 # cf. https://github.com/pypa/setuptools_scm/issues/237 | |
71 return "+{rev}_{distance}".format( | |
72 rev=version.node[1:], | |
73 distance=version.distance) | |
74 | |
75 return {'version_scheme': version_scheme, | |
76 'local_scheme': local_scheme} | |
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
|
77 |
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
|
78 |
ea106dfa2145
setup, constant: use https address in APP_URL, and keep pypi NAME separated from constants
Goffi <goffi@goffi.org>
parents:
2564
diff
changeset
|
79 setup(name=NAME, |
2571
4aca060075b7
setup: version is now set in SAT/VERSION, sat is not imported anymore in setup
Goffi <goffi@goffi.org>
parents:
2567
diff
changeset
|
80 version=VERSION, |
2562 | 81 description=u'Salut à Toi multipurpose and multi frontend XMPP client', |
82 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 | 83 author='Association « Salut à Toi »', |
84 author_email='contact@goffi.org', | |
2571
4aca060075b7
setup: version is now set in SAT/VERSION, sat is not imported anymore in setup
Goffi <goffi@goffi.org>
parents:
2567
diff
changeset
|
85 url='https://salut-a-toi.org', |
225 | 86 classifiers=['Development Status :: 3 - Alpha', |
87 'Environment :: Console', | |
88 '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
|
89 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', |
225 | 90 'Operating System :: POSIX :: Linux', |
91 'Topic :: Communications :: Chat'], | |
2562 | 92 packages=find_packages() + ['twisted.plugins'], |
586
6a718ede8be1
Fix coding style in setup.py.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
93 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), |
2562 | 94 (os.path.join('share/doc', NAME), ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), |
95 (os.path.join('share', DBUS_DIR), [DBUS_FILE]), | |
227 | 96 ], |
2562 | 97 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
|
98 zip_safe=False, |
2572 | 99 setup_requires=['setuptools_scm'] if is_dev_version else [], |
100 use_scm_version=sat_dev_version if is_dev_version else False, | |
2562 | 101 install_requires=install_requires, |
2571
4aca060075b7
setup: version is now set in SAT/VERSION, sat is not imported anymore in setup
Goffi <goffi@goffi.org>
parents:
2567
diff
changeset
|
102 package_data={'sat': ['VERSION']}, |
2562 | 103 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
|
104 ) |