123456789101112131415161718192021222324252627282930313233 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- systemctl-mqtt = {editable = true,path = "."}
- [dev-packages]
- # black requires python>=3.6
- # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
- black = {version = "==19.10b0", markers = "python_version >= '3.6'"}
- mypy = "*"
- pylint = "*"
- # >=2.0.3 to skip PyGObject's custom loader & fix broken wheel
- pylint-import-requirements = ">=2.0.3"
- pytest = "*"
- pytest-cov = "*"
- # python3.5 compatibility
- # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
- zipp = "<2"
- # workaround https://github.com/pytest-dev/pytest/issues/3953
- pathlib2 = {version = "*", markers="python_version < '3.6'"}
- # python3.8 compatibility
- # workaround https://github.com/WanzenBug/pylint-import-requirements/issues/17
- importlib-metadata = "*"
- # workaround pipenv unexpectedly adding marker "python_version < '3.8'"
- typed-ast = "*"
- [requires]
- python_version = "3"
|