1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-21 18:18:38 +00:00

Merge branch 'master' of https://github.com/mkreder/thefuck into mkreder-master

This commit is contained in:
nvbn 2015-07-07 16:33:58 +03:00
commit a8de919300

View File

@ -1,6 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
import sys import sys
from setuptools import setup, find_packages from setuptools import setup, find_packages
import sys
if sys.version_info < (2, 7): if sys.version_info < (2, 7):
print( print(
@ -16,6 +17,10 @@ if sys.version_info < (3, 3):
VERSION = '1.46' VERSION = '1.46'
install_requires = ['psutil', 'colorama', 'six']
if sys.version_info < (3,4):
install_requires.append('pathlib')
setup(name='thefuck', setup(name='thefuck',
version=VERSION, version=VERSION,
@ -28,7 +33,7 @@ setup(name='thefuck',
'tests', 'release']), 'tests', 'release']),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=['pathlib', 'psutil', 'colorama', 'six'], install_requires=install_requires,
entry_points={'console_scripts': [ entry_points={'console_scripts': [
'thefuck = thefuck.main:main', 'thefuck = thefuck.main:main',
'thefuck-alias = thefuck.shells:app_alias']}) 'thefuck-alias = thefuck.shells:app_alias']})