Pipfile 876 B

123456789101112131415161718192021222324
  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/numpy/numpy/commit/fbcb58ca2c17217f5dc85cb669ea651b7799b60c#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7R30
  15. numpy = "<1.19"
  16. # https://github.com/ipython/traitlets/commit/8c2554364bd80af917aff1a7725a967ab1203fed
  17. traitlets = "<5"
  18. [dev-packages]
  19. [requires]
  20. python_version = "3"