1234567891011121314151617181920212223242526272829303132333435 |
- [[source]]
- url = "https://pypi.org/simple"
- verify_ssl = true
- name = "pypi"
- [packages]
- switchbot-mqtt = {editable = true,path = "."}
- [dev-packages]
- black = "*"
- mypy = "*"
- pylint = "*"
- pylint-import-requirements = "*"
- pytest = "*"
- pytest-cov = "*"
- # mypy on python<3.8
- typed-ast = {markers = "python_version < '3.8'"}
- # > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
- # > from exceptiongroup import BaseExceptionGroup
- # > ModuleNotFoundError: No module named 'exceptiongroup'
- exceptiongroup = {markers = "python_version < '3.11'"}
- # > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
- # > import tomli as tomllib
- # > ModuleNotFoundError: No module named 'tomli'
- tomli = {markers = "python_version < '3.11'"}
- # > File "[...]/lib/python3.10/site-packages/astroid/decorators.py", line 16, in <module>
- # > import wrapt
- # > ModuleNotFoundError: No module named 'wrapt'
- wrapt = "*"
- [requires]
- python_version = "3"
- # Pipfile syntax: https://github.com/pypa/pipfile#pipfile
|