Pipfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. cc1101 = {editable = true,path = "."}
  7. # > $ cat /etc/issue
  8. # > Raspbian GNU/Linux 10 \n \l
  9. # > $ dpkg --status python3-spidev | grep Version
  10. # > Version: 20190221~182651-1
  11. # > $ python3 -c 'import spidev; print(spidev.__version__)'
  12. # > 3.4
  13. # https://pypi.org/project/spidev/3.4/
  14. spidev = {version = "3.4"}
  15. [dev-packages]
  16. # black requires python>=3.6
  17. # https://github.com/psf/black/commit/e74117f172e29e8a980e2c9de929ad50d3769150#diff-2eeaed663bd0d25b7e608891384b7298R51
  18. black = {version = "==20.8b1", markers = "python_version >= '3.6'"}
  19. mypy = "*"
  20. pylint = "*"
  21. pylint-import-requirements = "*"
  22. pytest = "*"
  23. pytest-cov = "*"
  24. # python3.5 compatibility
  25. isort = "<5"
  26. # workaround https://github.com/pytest-dev/pytest/issues/3953
  27. pathlib2 = {version = "*", markers="python_version < '3.6'"}
  28. # https://github.com/jaraco/zipp/commit/05a3c52b4d41690e0471a2e283cffb500dc0329a
  29. zipp = "<2"
  30. [requires]
  31. python_version = "3"
  32. # Pipfile syntax: https://github.com/pypa/pipfile#pipfile