mirror of
https://github.com/esphome/esphome-flasher.git
synced 2024-11-16 10:55:31 +01:00
342d6895a1
* Add github actions * Updates * Try fix * Try fix 2 * Try fix 3 * Windows x86, ubuntu fix * Disable ubuntu Builds keep failing, looks like a bug in github actions ubuntu image/azure * Fix esptool 2.8 * Faster upload (4x) * Change baud rate for logs
53 lines
1.4 KiB
Python
53 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
"""esphomeflasher setup script."""
|
|
from setuptools import setup, find_packages
|
|
|
|
from esphomeflasher import const
|
|
|
|
PROJECT_NAME = 'esphomeflasher'
|
|
PROJECT_PACKAGE_NAME = 'esphomeflasher'
|
|
PROJECT_LICENSE = 'MIT'
|
|
PROJECT_AUTHOR = 'ESPHome'
|
|
PROJECT_COPYRIGHT = '2019, ESPHome'
|
|
PROJECT_URL = 'https://esphome.io/guides/faq.html'
|
|
PROJECT_EMAIL = 'contact@esphome.io'
|
|
|
|
PROJECT_GITHUB_USERNAME = 'esphome'
|
|
PROJECT_GITHUB_REPOSITORY = 'esphomeflasher'
|
|
|
|
PYPI_URL = 'https://pypi.python.org/pypi/{}'.format(PROJECT_PACKAGE_NAME)
|
|
GITHUB_PATH = '{}/{}'.format(PROJECT_GITHUB_USERNAME, PROJECT_GITHUB_REPOSITORY)
|
|
GITHUB_URL = 'https://github.com/{}'.format(GITHUB_PATH)
|
|
|
|
DOWNLOAD_URL = '{}/archive/{}.zip'.format(GITHUB_URL, const.__version__)
|
|
|
|
REQUIRES = [
|
|
'wxpython>=4.0,<5.0',
|
|
'esptool==2.8',
|
|
'requests>=2.0,<3',
|
|
]
|
|
|
|
setup(
|
|
name=PROJECT_PACKAGE_NAME,
|
|
version=const.__version__,
|
|
license=PROJECT_LICENSE,
|
|
url=GITHUB_URL,
|
|
download_url=DOWNLOAD_URL,
|
|
author=PROJECT_AUTHOR,
|
|
author_email=PROJECT_EMAIL,
|
|
description="ESP8266/ESP32 firmware flasher for esphomelib",
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
platforms='any',
|
|
test_suite='tests',
|
|
python_requires='>=3.5',
|
|
install_requires=REQUIRES,
|
|
keywords=['home', 'automation'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'esphomeflasher = esphomeflasher.__main__:main'
|
|
]
|
|
},
|
|
packages=find_packages()
|
|
)
|