Compare commits
No commits in common. "main" and "0.1.1" have entirely different histories.
|
@ -6,5 +6,3 @@ __pycache__
|
||||||
*.egg-info
|
*.egg-info
|
||||||
.env
|
.env
|
||||||
.ycm_extra_conf.py
|
.ycm_extra_conf.py
|
||||||
/build
|
|
||||||
/dist
|
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -1,4 +1,4 @@
|
||||||
.PHONY: check install dist upload
|
.PHONY: check install
|
||||||
|
|
||||||
check:
|
check:
|
||||||
@mypy . || true
|
@mypy . || true
|
||||||
|
@ -7,9 +7,3 @@ check:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
pip install --user -e .
|
pip install --user -e .
|
||||||
|
|
||||||
dist:
|
|
||||||
python3 -m build
|
|
||||||
|
|
||||||
upload: dist
|
|
||||||
python3 -m twine upload dist/*
|
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
because minicom is not that good
|
because minicom is not that good
|
||||||
|
|
||||||
  
|
|
||||||
|
|
||||||
## installation
|
## installation
|
||||||
|
|
||||||
from pypi
|
from pypi
|
||||||
|
|
|
@ -12,7 +12,8 @@ import threading
|
||||||
import tty
|
import tty
|
||||||
import queue
|
import queue
|
||||||
from types import TracebackType
|
from types import TracebackType
|
||||||
from typing import Any, BinaryIO, Iterable, List, Literal, Optional, Tuple, Type
|
from typing import Any, BinaryIO, Iterable, List, Optional, Tuple, Type
|
||||||
|
from typing_extensions import Literal
|
||||||
|
|
||||||
import serial
|
import serial
|
||||||
import serial_asyncio
|
import serial_asyncio
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -5,7 +5,7 @@ with open("README.md", "r") as f:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='megacom',
|
name='megacom',
|
||||||
version='0.1.2',
|
version='0.1.1',
|
||||||
description='Alternative console-based UART client',
|
description='Alternative console-based UART client',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
@ -18,7 +18,7 @@ setup(
|
||||||
"pyserial",
|
"pyserial",
|
||||||
"pyserial-asyncio"
|
"pyserial-asyncio"
|
||||||
],
|
],
|
||||||
python_requires=">=3.9",
|
python_requires=">=3.8",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: GNU Affero General Public License v3",
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
||||||
|
|
Loading…
Reference in New Issue