Skip to content
Snippets Groups Projects
Select Git revision
  • dc59b93ed494277e126b94ac4f8744a8405cfcfc
  • master default
2 results

download.go

Blame
  • Pipfile 550 B
    [[source]]
    name = "pypi"
    url = "https://pypi.org/simple"
    verify_ssl = true
    
    [dev-packages]
    pre-commit = "*"
    bumpversion = {version = "*",markers = "python_version >= '3.6'"}
    twine = "*"
    template = {editable = true,path = "."}
    pytest = "*"
    
    [scripts]
    lint = "pre-commit run --all-files"
    build = "python setup.py bdist_wheel"
    clean = "git clean -fdX"
    upload = "twine upload"
    bats = "bats -t tests/"
    check = "sh -c 'rm -rf dist/ && python setup.py bdist_wheel && twine check dist/*'"
    doctest = "pytest --doctest-modules --junit-xml results/doctest.xml"