Add Pipfile (for pipenv) and requirements.txt (for pip) to make

installation a bit less manual.

Right now the installation instructions call out the two python
external dependencies (pyserial and PyQT5), but assumes the dependencies
are installed globally.

I suggest adding a requirements file (and its pipenv equivalent:
Pipfile) so folks can use the normal python installation tools.

This pull request adds those files.  Tested under WSL and Ubuntu 18.
pull/2/head
Neil Katin 2019-08-30 12:15:09 -07:00
rodzic 774c5cc868
commit c273847bc4
2 zmienionych plików z 15 dodań i 0 usunięć

13
Pipfile 100644
Wyświetl plik

@ -0,0 +1,13 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
pyserial = "*"
pyqt5 = "*"
[requires]
python_version = "3.7"

2
requirements.txt 100644
Wyświetl plik

@ -0,0 +1,2 @@
pyqt5
pyserial