Skip to content

Commit 22f2253

Browse files
committed
setup: added url to changelog and latest python versions
https://onedigi.atlassian.net/browse/XBPL-425 Signed-off-by: Tatiana Leon <[email protected]>
1 parent c37ac19 commit 22f2253

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

setup.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright 2017-2020, Digi International Inc. All Rights Reserved.
5+
# Copyright 2017-2024, Digi International Inc. All Rights Reserved.
66
import os
77
import sys
88

@@ -59,9 +59,11 @@
5959
classifiers=[
6060
'Development Status :: 5 - Production/Stable',
6161
'Intended Audience :: Developers',
62-
'Intended Audience :: Telecommunications Industry',
62+
'Intended Audience :: Education',
6363
'Intended Audience :: End Users/Desktop',
64+
'Intended Audience :: Telecommunications Industry',
6465
'Topic :: Software Development :: Libraries',
66+
'Topic :: Software Development :: Libraries :: Python Modules',
6567
'Topic :: Home Automation',
6668
'Topic :: Games/Entertainment',
6769
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
@@ -72,11 +74,14 @@
7274
'Programming Language :: Python :: 3.8',
7375
'Programming Language :: Python :: 3.9',
7476
'Programming Language :: Python :: 3.10',
77+
'Programming Language :: Python :: 3.11',
78+
'Programming Language :: Python :: 3.12',
7579
'Operating System :: OS Independent',
7680
],
7781
project_urls={
7882
'Documentation': 'https://xbplib.readthedocs.io',
79-
'Source': 'https://github.com/digidotcom/xbee-python',
80-
'Tracker': 'https://github.com/digidotcom/xbee-python/issues',
83+
'Source': about['__url__'],
84+
'Tracker': '%s/issues' % about['__url__'],
85+
'Changelog': '%s/blob/%s/CHANGELOG.rst' % (about['__url__'], about['__version__'])
8186
},
8287
)

0 commit comments

Comments
 (0)