1
1
[build-system ]
2
- requires = [" setuptools >= 69.5.1" ]
2
+ # 75.3.0 is the latest version supporting Python 3.8
3
+ requires = [" setuptools >= 75.3.0" ]
3
4
build-backend = " setuptools.build_meta"
4
5
5
6
[project ]
6
7
name = " msgpack"
7
8
dynamic = [" version" ]
9
+ # `license = "Apache-2.0"` is preferred. But keep old syntax for Python 3.8 compatibility.
10
+ # https://github.com/msgpack/msgpack-python/pull/637
8
11
license = {text =" Apache 2.0" }
9
12
authors = [{
name =
" Inada Naoki" ,
email =
" [email protected] " }]
10
13
description = " MessagePack serializer"
@@ -14,18 +17,17 @@ requires-python = ">=3.8"
14
17
classifiers = [
15
18
" Development Status :: 5 - Production/Stable" ,
16
19
" Operating System :: OS Independent" ,
17
- " Programming Language :: Python " ,
18
- " Programming Language :: Python :: 3 " ,
20
+ " Topic :: File Formats " ,
21
+ " Intended Audience :: Developers " ,
19
22
" Programming Language :: Python :: 3.8" ,
20
23
" Programming Language :: Python :: 3.9" ,
21
24
" Programming Language :: Python :: 3.10" ,
22
25
" Programming Language :: Python :: 3.11" ,
23
26
" Programming Language :: Python :: 3.12" ,
24
27
" Programming Language :: Python :: 3.13" ,
28
+ " Programming Language :: Python :: 3.14" ,
25
29
" Programming Language :: Python :: Implementation :: CPython" ,
26
30
" Programming Language :: Python :: Implementation :: PyPy" ,
27
- " Intended Audience :: Developers" ,
28
- " License :: OSI Approved :: Apache Software License" ,
29
31
]
30
32
31
33
[project .urls ]
0 commit comments