Mercurial > sat_tmp
comparison setup.py @ 70:922b2f0efa60
install (setup.py): better classifiers + minimal python version is 3.6
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 18 Nov 2019 19:14:24 +0100 |
parents | 0721b6254c9e |
children | 29b383e14ebf |
comparison
equal
deleted
inserted
replaced
69:0721b6254c9e | 70:922b2f0efa60 |
---|---|
34 'modules when the patches are not yet available upstream. Patches ' | 34 'modules when the patches are not yet available upstream. Patches ' |
35 'are removed from this module once merged upstream.'), | 35 'are removed from this module once merged upstream.'), |
36 author='Association « Salut à Toi »', | 36 author='Association « Salut à Toi »', |
37 author_email='contact@salut-a-toi.org', | 37 author_email='contact@salut-a-toi.org', |
38 url='https://salut-a-toi.org', | 38 url='https://salut-a-toi.org', |
39 classifiers=['Development Status :: 3 - Alpha', | 39 classifiers=[ |
40 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | 40 "Programming Language :: Python :: 3 :: Only", |
41 'Operating System :: POSIX :: Linux', | 41 "Programming Language :: Python :: 3.7", |
42 'Topic :: Communications :: Chat'], | 42 "Development Status :: 5 - Production/Stable", |
43 "License :: OSI Approved :: GNU Affero General Public License v3 " | |
44 "or later (AGPLv3+)", | |
45 "Operating System :: POSIX :: Linux", | |
46 "Topic :: Communications :: Chat", | |
47 ], | |
43 install_requires=['wokkel >= 0.7.1'], | 48 install_requires=['wokkel >= 0.7.1'], |
44 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'], | 49 packages=['sat_tmp', 'sat_tmp.wokkel', 'sat_tmp.wokkel.test'], |
45 data_files=[(os.path.join('share/doc', NAME), | 50 data_files=[(os.path.join('share/doc', NAME), |
46 ['README', 'COPYING'])], | 51 ['README', 'COPYING'])], |
52 python_requires=">=3.6", | |
47 ) | 53 ) |