Mercurial > libervia-desktop-kivy
comparison setup.py @ 468:8e42048649f7
install (setup): updated classifiers to reflect minimun Python version
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 20 Mar 2021 20:59:53 +0100 |
parents | 02787fa81b81 |
children | 98be52d5ac25 |
comparison
equal
deleted
inserted
replaced
467:3693c662fa88 | 468:8e42048649f7 |
---|---|
63 author="Association « Salut à Toi »", | 63 author="Association « Salut à Toi »", |
64 author_email="contact@goffi.org", | 64 author_email="contact@goffi.org", |
65 url="https://salut-a-toi.org", | 65 url="https://salut-a-toi.org", |
66 classifiers=[ | 66 classifiers=[ |
67 "Programming Language :: Python :: 3 :: Only", | 67 "Programming Language :: Python :: 3 :: Only", |
68 "Programming Language :: Python :: 3.6", | |
69 "Programming Language :: Python :: 3.7", | 68 "Programming Language :: Python :: 3.7", |
70 "Programming Language :: Python :: 3.8", | 69 "Programming Language :: Python :: 3.8", |
71 "Programming Language :: Python :: 3.9", | 70 "Programming Language :: Python :: 3.9", |
72 "Development Status :: 5 - Production/Stable", | 71 "Development Status :: 5 - Production/Stable", |
73 "Environment :: X11 Applications", | 72 "Environment :: X11 Applications", |
90 zip_safe=False, | 89 zip_safe=False, |
91 setup_requires=["setuptools_scm"] if is_dev_version else [], | 90 setup_requires=["setuptools_scm"] if is_dev_version else [], |
92 use_scm_version=cagou_dev_version if is_dev_version else False, | 91 use_scm_version=cagou_dev_version if is_dev_version else False, |
93 install_requires=install_requires, | 92 install_requires=install_requires, |
94 package_data={"": ["*.kv"], "cagou": ["VERSION"]}, | 93 package_data={"": ["*.kv"], "cagou": ["VERSION"]}, |
95 python_requires=">=3.6", | 94 python_requires=">=3.7", |
96 ) | 95 ) |