This repository has been archived by the owner on Jan 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,15 @@ | |
dist/ | ||
build/ | ||
*.pyc | ||
__pycache__/ | ||
|
||
# testing | ||
.coverage | ||
env/ | ||
env3/ | ||
*.log | ||
tmp/ | ||
venv/ | ||
|
||
# editors | ||
.vscode/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: python | ||
python: | ||
- 3.5 | ||
- 3.6 | ||
- 3.7 | ||
|
||
# command to install dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2015-2019 Peter Magnusson <peter@kmpm.se> | ||
# Copyright (C) 2015-2020 Peter Magnusson <me@kmpm.se> | ||
"""Setup for nodemcu-uploader""" | ||
|
||
from setuptools import setup | ||
|
@@ -16,13 +16,13 @@ | |
# package_dir={'nodemcu_uploader': 'lib'}, | ||
url='https://github.com/kmpm/nodemcu-uploader', | ||
author='kmpm', | ||
author_email='[email protected]', | ||
author_email='[email protected]', | ||
description='tool for uploading files to the filesystem of an ESP8266 running NodeMCU.', | ||
keywords=['esp8266', 'upload', 'nodemcu'], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Programming Language :: Python :: 3.5' | ||
'Programming Language :: Python :: 3' | ||
], | ||
license='MIT', | ||
test_suite="tests.get_tests", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[tox] | ||
envlist = py35, py36, py37 | ||
envlist = py36, py37, py38 | ||
|
||
[testenv] | ||
deps = -rtest_requirements.txt | ||
commands = python -m unittest -v tests.get_tests | ||
setenv = | ||
SERIALPORT=/dev/ttyACM0 | ||
SERIALPORT= | ||
|
||
[flake8] | ||
include = | ||
nodemcu_uploader, | ||
tests | ||
# ignore = E501 | ||
max-line-length = 120 | ||
max-line-length = 120 |