mirror of
https://github.com/bkerler/mtkclient.git
synced 2024-11-14 19:25:05 -05:00
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:
commit
b63c933c24
3 changed files with 3 additions and 3 deletions
|
@ -6,6 +6,8 @@ requires = [
|
|||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name="mtkclient"
|
||||
version="1.6.3"
|
||||
dependencies = [
|
||||
"pyusb",
|
||||
"pycryptodome",
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
[metadata]
|
||||
license_file = LICENSE
|
||||
license_files = LICENSE
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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'],
|
||||
|
|
Loading…
Reference in a new issue