代码拉取完成,页面将自动刷新
# 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()
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。