|
1 | | -# coding=utf-8 |
2 | | -from setuptools import setup, find_packages |
3 | | - |
4 | | -setup( |
5 | | - name="git-up", |
6 | | - version="1.6.0", |
7 | | - packages=find_packages(), |
8 | | - install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7', |
9 | | - 'termcolor>=1.1.0', 'click>=7.0.0', |
10 | | - 'six>=1.10.0'], |
11 | | - |
12 | | - # Tests |
13 | | - test_suite="nose.collector", |
14 | | - tests_require='nose', |
15 | | - |
16 | | - # Executable |
17 | | - entry_points={ |
18 | | - 'console_scripts': [ |
19 | | - 'git-up = PyGitUp.gitup:run' |
20 | | - ] |
21 | | - }, |
22 | | - |
23 | | - # Additional data |
24 | | - package_data={ |
25 | | - 'PyGitUp': ['check-bundler.rb'], |
26 | | - '': ['README.rst', 'LICENCE'] |
27 | | - }, |
28 | | - |
29 | | - zip_safe=False, |
30 | | - |
31 | | - # Metadata |
32 | | - author="Markus Siemens", |
33 | | - author_email="markus@m-siemens.de", |
34 | | - description="A python implementation of 'git up'", |
35 | | - license="MIT", |
36 | | - keywords="git git-up", |
37 | | - url="https://github.com/msiemens/PyGitUp", |
38 | | - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", |
39 | | - classifiers=[ |
40 | | - "Development Status :: 5 - Production/Stable", |
41 | | - "Environment :: Console", |
42 | | - "Intended Audience :: Developers", |
43 | | - "License :: OSI Approved :: MIT License", |
44 | | - "Programming Language :: Python :: 2", |
45 | | - "Programming Language :: Python :: 2.7", |
46 | | - "Programming Language :: Python :: 3", |
47 | | - "Programming Language :: Python :: 3.4", |
48 | | - "Programming Language :: Python :: 3.5", |
49 | | - "Programming Language :: Python :: 3.6", |
50 | | - "Topic :: Software Development :: Version Control", |
51 | | - "Topic :: Utilities" |
52 | | - ], |
53 | | - |
54 | | - long_description=open('README.rst').read() |
55 | | -) |
| 1 | +# coding=utf-8 |
| 2 | +from setuptools import setup, find_packages |
| 3 | + |
| 4 | +setup( |
| 5 | + name="git-up", |
| 6 | + version="1.6.1", |
| 7 | + packages=find_packages(), |
| 8 | + install_requires=['GitPython>=2.1.8', 'colorama>=0.3.7', |
| 9 | + 'termcolor>=1.1.0', 'click>=7.0.0', |
| 10 | + 'six>=1.10.0'], |
| 11 | + |
| 12 | + # Tests |
| 13 | + test_suite="nose.collector", |
| 14 | + tests_require='nose', |
| 15 | + |
| 16 | + # Executable |
| 17 | + entry_points={ |
| 18 | + 'console_scripts': [ |
| 19 | + 'git-up = PyGitUp.gitup:run' |
| 20 | + ] |
| 21 | + }, |
| 22 | + |
| 23 | + # Additional data |
| 24 | + package_data={ |
| 25 | + 'PyGitUp': ['check-bundler.rb'], |
| 26 | + '': ['README.rst', 'LICENCE'] |
| 27 | + }, |
| 28 | + |
| 29 | + zip_safe=False, |
| 30 | + |
| 31 | + # Metadata |
| 32 | + author="Markus Siemens", |
| 33 | + author_email="markus@m-siemens.de", |
| 34 | + description="A python implementation of 'git up'", |
| 35 | + license="MIT", |
| 36 | + keywords="git git-up", |
| 37 | + url="https://github.com/msiemens/PyGitUp", |
| 38 | + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", |
| 39 | + classifiers=[ |
| 40 | + "Development Status :: 5 - Production/Stable", |
| 41 | + "Environment :: Console", |
| 42 | + "Intended Audience :: Developers", |
| 43 | + "License :: OSI Approved :: MIT License", |
| 44 | + "Programming Language :: Python :: 2", |
| 45 | + "Programming Language :: Python :: 2.7", |
| 46 | + "Programming Language :: Python :: 3", |
| 47 | + "Programming Language :: Python :: 3.4", |
| 48 | + "Programming Language :: Python :: 3.5", |
| 49 | + "Programming Language :: Python :: 3.6", |
| 50 | + "Topic :: Software Development :: Version Control", |
| 51 | + "Topic :: Utilities" |
| 52 | + ], |
| 53 | + |
| 54 | + long_description=open('README.rst').read() |
| 55 | +) |
0 commit comments