Strona działa najlepiej z włączonym JavaScript.
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
natrinicle
/
cookiecutter-pypackage
Obserwuj
1
Polub
0
Forkuj
0
Kod
Zgłoszenia
0
Oczekujące zmiany
0
Wydania
0
Wiki
Aktywność
Generate a Python package project using the Python Cookiecutter package
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
9
Commity
1
Gałąź
Gałąź:
master
master
Gałęzie
Tagi
${ item.name }
Utwórz gałąź
${ searchTerm }
z 'master'
${ noResults }
cookiecutter-pypackage
/
{{cookiecutter.project_slug}}
/
.envrc
.envrc
86B
Czysty
Bezpośredni odnośnik
Zwykły widok
Historia
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 lat temu
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 lat temu
1
2
3
4
5
if [ ! -d venv ]; then
python3 -m venv venv
fi
source venv/bin/activate
unset PS1