Mercurial > libervia-backend
comparison setup.py @ 2620:72f6f37ab648
core: some more line limiting
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 27 Jun 2018 07:23:13 +0200 |
parents | c180ca699e72 |
children | 534b264d63df |
comparison
equal
deleted
inserted
replaced
2619:e7bd2945518f | 2620:72f6f37ab648 |
---|---|
75 | 75 |
76 | 76 |
77 setup(name=NAME, | 77 setup(name=NAME, |
78 version=VERSION, | 78 version=VERSION, |
79 description=u'Salut à Toi multipurpose and multi frontend XMPP client', | 79 description=u'Salut à Toi multipurpose and multi frontend XMPP client', |
80 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).', | 80 long_description=u'Salut à Toi (SàT) is a XMPP client based on a daemon/frontend ' |
81 u'architecture. Its multi frontend (desktop, web, console ' | |
82 u'interface, CLI, etc) and multipurpose (instant messaging, ' | |
83 u'microblogging, games, file sharing, etc).', | |
81 author='Association « Salut à Toi »', | 84 author='Association « Salut à Toi »', |
82 author_email='contact@goffi.org', | 85 author_email='contact@goffi.org', |
83 url='https://salut-a-toi.org', | 86 url='https://salut-a-toi.org', |
84 classifiers=['Development Status :: 3 - Alpha', | 87 classifiers=['Development Status :: 3 - Alpha', |
85 'Environment :: Console', | 88 'Environment :: Console', |
86 'Framework :: Twisted', | 89 'Framework :: Twisted', |
87 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | 90 'License :: OSI Approved :: GNU Affero General Public License v3 ' |
91 'or later (AGPLv3+)', | |
88 'Operating System :: POSIX :: Linux', | 92 'Operating System :: POSIX :: Linux', |
89 'Topic :: Communications :: Chat'], | 93 'Topic :: Communications :: Chat'], |
90 packages=find_packages() + ['twisted.plugins'], | 94 packages=find_packages() + ['twisted.plugins'], |
91 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), | 95 data_files=[(os.path.join(sys.prefix, 'share/locale/fr/LC_MESSAGES'), |
92 (os.path.join('share/doc', NAME), ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), | 96 ['i18n/fr/LC_MESSAGES/sat.mo']), |
97 (os.path.join('share/doc', NAME), | |
98 ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), | |
93 (os.path.join('share', DBUS_DIR), [DBUS_FILE]), | 99 (os.path.join('share', DBUS_DIR), [DBUS_FILE]), |
94 ], | 100 ], |
95 scripts=['sat_frontends/jp/jp', 'sat_frontends/primitivus/primitivus', 'bin/sat'], | 101 scripts=['sat_frontends/jp/jp', 'sat_frontends/primitivus/primitivus', 'bin/sat'], |
96 zip_safe=False, | 102 zip_safe=False, |
97 setup_requires=['setuptools_scm'] if is_dev_version else [], | 103 setup_requires=['setuptools_scm'] if is_dev_version else [], |