Mercurial > libervia-desktop-kivy
comparison setup.py @ 314:7ea4b7915c6b
install (setup.py): updated classifiers
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 25 Aug 2019 12:16:26 +0200 |
parents | ffb09ae72b88 |
children | 4c1df075378c |
comparison
equal
deleted
inserted
replaced
313:ffb09ae72b88 | 314:7ea4b7915c6b |
---|---|
48 | 48 |
49 return {'version_scheme': version_scheme, | 49 return {'version_scheme': version_scheme, |
50 'local_scheme': local_scheme} | 50 'local_scheme': local_scheme} |
51 | 51 |
52 | 52 |
53 setup(name=NAME, | 53 setup( |
54 version=VERSION, | 54 name=NAME, |
55 description='Desktop/Android frontend for Salut à Toi XMPP client', | 55 version=VERSION, |
56 long_description=textwrap.dedent("""\ | 56 description="Desktop/Android frontend for Salut à Toi XMPP client", |
57 Cagou is a desktop/Android frontend for Salut à Toi. | 57 long_description=textwrap.dedent("""\ |
58 It provides native graphical interface with a modern user interface, | 58 Cagou is a desktop/Android frontend for Salut à Toi. |
59 using touch screen abilitiy when available, and with split ability inspired from Blender | 59 It provides native graphical interface with a modern user interface, |
60 """), | 60 using touch screen abilitiy when available, and with split ability inspired from Blender |
61 author='Association « Salut à Toi »', | 61 """), |
62 author_email='contact@goffi.org', | 62 author="Association « Salut à Toi »", |
63 url='https://salut-a-toi.org', | 63 author_email="contact@goffi.org", |
64 classifiers=['Development Status :: 3 - Alpha', | 64 url="https://salut-a-toi.org", |
65 'Programming Language :: Python :: 2.7', | 65 classifiers=[ |
66 'Programming Language :: Python :: 2 :: Only', | 66 "Programming Language :: Python :: 3.6", |
67 'Environment :: X11 Applications', | 67 "Programming Language :: Python :: 3.7", |
68 'Framework :: Twisted', | 68 "Programming Language :: Python :: 3 :: Only", |
69 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | 69 "Development Status :: 5 - Production/Stable", |
70 'Operating System :: POSIX :: Linux', | 70 "Environment :: X11 Applications", |
71 'Operating System :: Android', | 71 "Framework :: Twisted", |
72 'Topic :: Internet :: XMPP', | 72 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", |
73 'Topic :: Communications :: Chat', | 73 "Operating System :: POSIX :: Linux", |
74 'Intended Audience :: End Users/Desktop', | 74 "Operating System :: Android", |
75 ], | 75 "Topic :: Internet :: XMPP", |
76 packages=find_packages(), | 76 "Topic :: Communications :: Chat", |
77 scripts=['bin/cagou'], | 77 "Intended Audience :: End Users/Desktop", |
78 zip_safe=False, | 78 ], |
79 setup_requires=['setuptools_scm'] if is_dev_version else [], | 79 packages=find_packages(), |
80 use_scm_version=cagou_dev_version if is_dev_version else False, | 80 scripts=["bin/cagou"], |
81 install_requires=install_requires, | 81 zip_safe=False, |
82 package_data={'': ['*.kv'], 'cagou': ['VERSION']}, | 82 setup_requires=["setuptools_scm"] if is_dev_version else [], |
83 python_requires='>=3.6', | 83 use_scm_version=cagou_dev_version if is_dev_version else False, |
84 ) | 84 install_requires=install_requires, |
85 package_data={"": ["*.kv"], "cagou": ["VERSION"]}, | |
86 python_requires=">=3.6", | |
87 ) |