1 Star 0 Fork 6

whynpcxp/A Batch Tool

forked from Walkline/A Batch Tool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
import ab
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
setup(
name = 'ampy-batch-tool',
packages = ['ab'],
version = ab.__version__,
author = ab.__author__,
author_email = ab.__email__,
description = 'An adafruit-ampy batch tool',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://gitee.com/walkline/a-batch-tool',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',\
'Environment :: Console',
],
provides = ['ab'],
entry_points = {
'console_scripts': [
'ab = ab.__main__:main'
],
},
install_requires = [
'pyserial',
'pywin32',
'esptool>=3.1'
# 'adafruit-ampy',
# 'pyminifier'
]
)
# for local develop
# pip install -e .
# pip install -U twine wheel setuptools
# python setup.py sdist bdist_wheel
# twine check dist/*
# twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/whynpcxp/a-batch-tool.git
git@gitee.com:whynpcxp/a-batch-tool.git
whynpcxp
a-batch-tool
A Batch Tool
master

搜索帮助