21 lines
337 B
TOML
21 lines
337 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
flask = "*"
|
|
pyserial = "*"
|
|
|
|
[dev-packages]
|
|
pyinstaller = "*"
|
|
|
|
[requires]
|
|
python_version = "3"
|
|
|
|
[scripts]
|
|
web = "python web.py"
|
|
cli = "python cli.py"
|
|
build = "pyinstaller --clean --onefile --name led-cli --paths lib cli.py"
|
|
install = "pipenv install"
|