Šī lapa labāk darbojas, ja pārlūkam ir iespējots JavaScript.
Sākums
Izpētīt
Palīdzība
Reģistrēties
Pierakstīties
natrinicle
/
cookiecutter-pypackage
Vērot
1
Pievienot zvaigznīti
0
Atdalīts
0
Kods
Problēmas
0
Izmaiņu pieprasījumi
0
Laidieni
0
Vikivietne
Aktivitāte
Generate a Python package project using the Python Cookiecutter package
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
9
Revīzijas
1
Atzars
Atzars:
master
master
Atzari
Tagi
${ item.name }
Izveidot atzaru
${ searchTerm }
no 'master'
${ noResults }
cookiecutter-pypackage
/
{{cookiecutter.project_slug}}
/
.envrc
.envrc
86B
Neapstrādāts
Patstāvīgā saite
Parastais skats
Vēsture
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.
pirms 2 gadiem
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
pirms 3 gadiem
1
2
3
4
5
if [ ! -d venv ]; then
python3 -m venv venv
fi
source venv/bin/activate
unset PS1