mirror of
https://github.com/bckelley/tconnectsync.git
synced 2026-08-24 03:34:12 -05:00
20 lines
513 B
TOML
20 lines
513 B
TOML
[[source]]
|
|
name = "pypi"
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
|
|
[dev-packages]
|
|
ptpython = "*"
|
|
flake8 = "*"
|
|
pytest = "*"
|
|
coverage = "*"
|
|
|
|
[packages]
|
|
tconnectsync = {path = "."}
|
|
|
|
[scripts]
|
|
tconnectsync = "python3 main.py"
|
|
test = "python3 -m unittest discover -vv"
|
|
build_events = "bash -c 'cd tconnectsync/eventparser && python3 build_events.py > events.py'"
|
|
lint = "bash -c 'flake8 . --count --select=E9,F63,F7,F82 && flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 && echo PASS'"
|