This website works better with JavaScript.
Начало
Каталог
Помощ
Регистрация
Вход
natrinicle
/
cookiecutter-pypackage
Наблюдаван
1
Харесван
0
Разклонения
0
Код
Задачи
0
Заявки за сливане
0
Версии
0
Уики
Activity
Generate a Python package project using the Python Cookiecutter package
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6
Ревизии
1
Клон
ИН на ревизия:
959cfc2da9
master
Клонове
Маркери
${ item.name }
Create branch
${ searchTerm }
от '959cfc2da9'
${ noResults }
cookiecutter-pypackage
/
{{cookiecutter.project_slug}}
/
.envrc
.envrc
86B
Директен файл
Normal View
История
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 години
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 години
1
2
3
4
5
if [ ! -d venv ]; then
python3 -m venv venv
fi
source venv/bin/activate
unset PS1