added pipenv as a recommend use case for development, updated core-daemon script to allow a parameter to pass in the logging configuration

This commit is contained in:
bharnden 2019-09-10 13:39:36 -07:00
parent 76846fefeb
commit 6d8099e8c6
5 changed files with 441 additions and 29 deletions

20
daemon/Pipfile Normal file
View file

@ -0,0 +1,20 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[scripts]
coredev = "python scripts/core-daemon -f data/core.conf -l data/logging.conf"
[dev-packages]
grpcio-tools = "*"
core = {editable = true,path = "."}
[packages]
configparser = "*"
enum34 = "*"
future = "*"
futures = {markers = "python_version < '3.2'"}
grpcio = "*"
lxml = "*"
protobuf = "*"