forked from msiemens/PyGitUp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (41 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="git-up",
version="1.1.4",
packages=find_packages(exclude=["tests"]),
scripts=['PyGitUp/gitup.py'],
install_requires=['GitPython==0.3.2.RC1', 'colorama==0.2.4,==0.3.0',
'termcolor==1.1.0', 'docopt==0.6.1'],
# Tests
test_suite="nose.collector",
tests_require='nose',
# Executable
entry_points={
'console_scripts': [
'git-up = 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",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities"
],
long_description=open('README.rst').read()
)