Pipfile 706 B

12345678910111213141516171819202122
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. freesurfer-surface = {editable = true, path = "./.."}
  7. pandas = "*"
  8. notebook = "*"
  9. # python3.5 compatibility
  10. # https://github.com/ipython/ipython/commit/0f6d2f42f2a10eeb5f78c57314b2f8cc026aed19#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7L232
  11. ipython = "<7.10.0"
  12. # https://github.com/jupyter/nbconvert/commit/e87b847b23e1ae56461f7a7b7d54c44285ce91f1#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7L192
  13. nbconvert = "<6"
  14. # https://github.com/ipython/traitlets/commit/8c2554364bd80af917aff1a7725a967ab1203fed
  15. traitlets = "<5"
  16. [dev-packages]
  17. [requires]
  18. python_version = "3"