File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- include CHANGES README LICENSE Makefile pyproject.toml setup.py
1
+ include CHANGES README Makefile pyproject.toml setup.py
2
2
recursive-include lib/yaml *.py
3
3
recursive-include lib/_yaml *.py
4
4
recursive-include packaging *
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
- " setuptools" , # FIXME: declare min/max setuptools versions?
4
- " wheel" ,
3
+ " setuptools>=77.0.0" ,
5
4
" Cython; python_version < '3.13'" ,
6
5
" Cython>=3.0; python_version >= '3.13'"
7
6
]
Original file line number Diff line number Diff line change 17
17
AUTHOR = "Kirill Simonov"
18
18
AUTHOR_EMAIL = '[email protected] '
19
19
LICENSE = "MIT"
20
+ LICENSE_FILES = ["LICENSE" ]
20
21
PLATFORMS = "Any"
21
22
URL = "https://pyyaml.org/"
22
23
DOWNLOAD_URL = "https://pypi.org/project/PyYAML/"
23
24
CLASSIFIERS = [
24
25
"Development Status :: 5 - Production/Stable" ,
25
26
"Intended Audience :: Developers" ,
26
- "License :: OSI Approved :: MIT License" ,
27
27
"Operating System :: OS Independent" ,
28
28
"Programming Language :: Cython" ,
29
29
"Programming Language :: Python" ,
@@ -339,6 +339,7 @@ def run(self):
339
339
author = AUTHOR ,
340
340
author_email = AUTHOR_EMAIL ,
341
341
license = LICENSE ,
342
+ license_files = LICENSE_FILES ,
342
343
platforms = PLATFORMS ,
343
344
url = URL ,
344
345
download_url = DOWNLOAD_URL ,
You can’t perform that action at this time.
0 commit comments