Skip to content
Snippets Groups Projects
Pipfile 448 B
Newer Older
  • Learn to ignore specific revisions
  • [[source]]
    url = "https://pypi.org/simple"
    verify_ssl = true
    name = "pypi"
    
    [packages]
    attrs = "*"
    requests = "*"
    psutil = "*"
    
    [dev-packages]
    
    pytest = "<4"  # pytest-cov uses deprecated function (removed in pytest 4) when using --no-cov
    
    pytest-cov = "*"
    wheel = "*"
    pyinstaller = "*"
    ipython = "*"
    
    flamenco-worker = {editable = true,path = "."}
    
    colorama = {version = "*", sys_platform = "== 'win32'"}
    
    python_version = "3.7"