2 Star 5 Fork 1

Git工具集/PyGitUp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="git-up",
version="1.6.1",
packages=find_packages(),
install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7',
'termcolor>=1.1.0', 'click>=7.0',
'six>=1.10.0'],
# Tests
test_suite="nose.collector",
tests_require='nose',
# Executable
entry_points={
'console_scripts': [
'git-up = PyGitUp.gitup:run'
]
},
# Additional data
package_data={
'PyGitUp': ['check-bundler.rb'],
'': ['README.rst', 'LICENCE']
},
zip_safe=False,
# Metadata
author="Markus Siemens",
author_email="markus@m-siemens.de",
description="A python implementation of 'git up'",
license="MIT",
keywords="git git-up",
url="https://github.com/msiemens/PyGitUp",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
],
long_description=open('README.rst').read()
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/vcs-all-in-one/PyGitUp.git
git@gitee.com:vcs-all-in-one/PyGitUp.git
vcs-all-in-one
PyGitUp
PyGitUp
master

搜索帮助