Merge pull request #811 from Vilez0/main

Fix build error after latest pyproject.toml update. Replace license_file parameter with license_files (license_file parameter is deprecated)
This commit is contained in:
Bjoern Kerler 2023-10-24 11:35:39 +02:00 committed by GitHub
commit b63c933c24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -6,6 +6,8 @@ requires = [
build-backend = "setuptools.build_meta"
[project]
name="mtkclient"
version="1.6.3"
dependencies = [
"pyusb",
"pycryptodome",

View file

@ -1,2 +1,2 @@
[metadata]
license_file = LICENSE
license_files = LICENSE

View file

@ -2,8 +2,6 @@
from setuptools import setup, find_packages
setup(
name='mtkclient',
version='1.6.3',
packages=find_packages(),
long_description=open("README.md").read(),
scripts=['mtk','stage2'],