comparison setup.py @ 223:3f9dd44be8c2

hglib setup.py: clearly indicate supported Python versions
author Mathias De Mare <mathias.de_mare@nokia.com>
date Thu, 09 Mar 2023 16:18:54 +0100
parents ae6427d1c8f7
children 7b6ea46ea111
comparison
equal deleted inserted replaced
222:8ac8e29c7a1f 223:3f9dd44be8c2
41 description='Mercurial Python library', 41 description='Mercurial Python library',
42 long_description=open(os.path.join(os.path.dirname(__file__), 42 long_description=open(os.path.join(os.path.dirname(__file__),
43 'README')).read(), 43 'README')).read(),
44 classifiers=[ 44 classifiers=[
45 'Programming Language :: Python', 45 'Programming Language :: Python',
46 'Programming Language :: Python :: 2.4', 46 'Programming Language :: Python :: 3.6',
47 'Programming Language :: Python :: 2.5', 47 'Programming Language :: Python :: 3.7',
48 'Programming Language :: Python :: 2.6', 48 'Programming Language :: Python :: 3.8',
49 'Programming Language :: Python :: 2.7', 49 'Programming Language :: Python :: 3.9',
50 'Programming Language :: Python :: 3', 50 'Programming Language :: Python :: 3.10',
51 'Programming Language :: Python :: 3.4', 51 'Programming Language :: Python :: 3.11',
52 52
53 ], 53 ],
54 license='MIT', 54 license='MIT',
55 packages=['hglib']) 55 packages=['hglib'])