使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
natrinicle
/
cookiecutter-pypackage
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
版本发布
0
百科
动态
Generate a Python package project using the Python Cookiecutter package
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
6
提交
1
分支
目录树:
959cfc2da9
master
分支列表
标签列表
${ item.name }
创建分支
${ searchTerm }
从 '959cfc2da9'
${ noResults }
cookiecutter-pypackage
/
{{cookiecutter.project_slug}}
/
.envrc
.envrc
86B
原始文件
普通视图
文件历史
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