Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Cadastrar
Acessar
natrinicle
/
cookiecutter-pypackage
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Generate a Python package project using the Python Cookiecutter package
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
7
Commits
1
Branch
Tag:
80b61b4482
master
Branches
Tags
${ item.name }
Criar branch
${ searchTerm }
de 80b61b4482
${ noResults }
cookiecutter-pypackage
/
{{cookiecutter.project_slug}}
/
.envrc
.envrc
86B
Original
Visão normal
Histórico
Update CookieCutter Add fixes to setup.py for the inability to import pip for parsing requirements files. Update tox with new coverage commands and only test on a single Python3 version. Create venv if one doesn't exist with direnv. Remove encoding pragma as this is no longer necessary as of ~Python3.6? Remove _compat.py as six does a better job and Python2.7 shouldn't be in use anymore. Add the requirements directory text files to the Manifest.in. Update versions of pre-commit repos.
2 anos atrás
Initial Cookiecutter Project Commit Copied and modified all files to be templatized and pulled in some niceties from https://github.com/ardydedase/cookiecutter-pypackage https://github.com/Nekroze/cookiecutter-pypackage https://raw.githubusercontent.com/tony/cookiecutter-pypackage-pythonic
3 anos atrás
1
2
3
4
5
if [ ! -d venv ]; then
python3 -m venv venv
fi
source venv/bin/activate
unset PS1