mirror of
https://github.com/m5stack/ax520tool.git
synced 2026-05-20 11:30:32 -07:00
29 lines
817 B
Python
29 lines
817 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='ax520tool',
|
|
version='v0.1.1-alpha',
|
|
py_modules=['ax520tool'],
|
|
install_requires=[
|
|
'pyserial',
|
|
'tqdm'
|
|
],
|
|
author='Xiao Han',
|
|
author_email='hansh-sz@hotmail.com',
|
|
description='Fully pythonic flash programmer tool for Axera AX520',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://github.com/m5stack/ax520tool',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
python_requires='>=3.6',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ax520tool=ax520tool:main',
|
|
],
|
|
},
|
|
)
|