comparison setup.py @ 3036:3338c6a634f5

install (setup.py): updated classifiers
author Goffi <goffi@goffi.org>
date Sun, 25 Aug 2019 12:16:18 +0200
parents 25af53e2990a
children fee60f17ebac
comparison
equal deleted inserted replaced
3035:25af53e2990a 3036:3338c6a634f5
72 72
73 return {'version_scheme': version_scheme, 73 return {'version_scheme': version_scheme,
74 'local_scheme': local_scheme} 74 'local_scheme': local_scheme}
75 75
76 76
77 setup(name=NAME, 77 setup(
78 version=VERSION, 78 name=NAME,
79 description='Salut à Toi multipurpose and multi frontend XMPP client', 79 version=VERSION,
80 long_description='Salut à Toi (SàT) is a XMPP client based on a daemon/frontend ' 80 description="Salut à Toi multipurpose and multi frontend XMPP client",
81 'architecture. Its multi frontend (desktop, web, console ' 81 long_description="Salut à Toi (SàT) is a XMPP client based on a daemon/frontend "
82 'interface, CLI, etc) and multipurpose (instant messaging, ' 82 "architecture. Its multi frontend (desktop, web, console "
83 'microblogging, games, file sharing, etc).', 83 "interface, CLI, etc) and multipurpose (instant messaging, "
84 author='Association « Salut à Toi »', 84 "microblogging, games, file sharing, etc).",
85 author_email='contact@goffi.org', 85 author="Association « Salut à Toi »",
86 url='https://salut-a-toi.org', 86 author_email="contact@goffi.org",
87 classifiers=['Development Status :: 3 - Alpha', 87 url="https://salut-a-toi.org",
88 'Environment :: Console', 88 classifiers=[
89 'Framework :: Twisted', 89 "Programming Language :: Python :: 3 :: Only",
90 'License :: OSI Approved :: GNU Affero General Public License v3 ' 90 "Programming Language :: Python :: 3.6",
91 'or later (AGPLv3+)', 91 "Programming Language :: Python :: 3.7",
92 'Operating System :: POSIX :: Linux', 92 "Development Status :: 5 - Production/Stable",
93 'Topic :: Communications :: Chat'], 93 "Environment :: Console",
94 packages=find_packages() + ['twisted.plugins'], 94 "Framework :: Twisted",
95 data_files=[('share/locale/fr/LC_MESSAGES', 95 "License :: OSI Approved :: GNU Affero General Public License v3 "
96 ['i18n/fr/LC_MESSAGES/sat.mo']), 96 "or later (AGPLv3+)",
97 (os.path.join('share/doc', NAME), 97 "Operating System :: POSIX :: Linux",
98 ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), 98 "Topic :: Communications :: Chat"
99 (os.path.join('share', DBUS_DIR), [DBUS_FILE]), 99 ],
100 ], 100 packages=find_packages() + ["twisted.plugins"],
101 scripts=['sat_frontends/jp/jp', 'sat_frontends/primitivus/primitivus', 'bin/sat'], 101 data_files=[("share/locale/fr/LC_MESSAGES",
102 zip_safe=False, 102 ["i18n/fr/LC_MESSAGES/sat.mo"]),
103 setup_requires=['setuptools_scm'] if is_dev_version else [], 103 (os.path.join("share/doc", NAME),
104 use_scm_version=sat_dev_version if is_dev_version else False, 104 ["CHANGELOG", "COPYING", "INSTALL", "README", "README4TRANSLATORS"]),
105 install_requires=install_requires, 105 (os.path.join("share", DBUS_DIR), [DBUS_FILE]),
106 package_data={'sat': ['VERSION']}, 106 ],
107 python_requires='>=3.6', 107 scripts=["sat_frontends/jp/jp", "sat_frontends/primitivus/primitivus", "bin/sat"],
108 ) 108 zip_safe=False,
109 setup_requires=["setuptools_scm"] if is_dev_version else [],
110 use_scm_version=sat_dev_version if is_dev_version else False,
111 install_requires=install_requires,
112 package_data={"sat": ["VERSION"]},
113 python_requires=">=3.6",
114 )