1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-13 22:28:33 +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
import sys
from setuptools import setup, find_packages
import sys
if sys.version_info < (2, 7):
print(
@ -16,6 +17,10 @@ if sys.version_info < (3, 3):
VERSION = '1.46'
install_requires = ['psutil', 'colorama', 'six']
if sys.version_info < (3,4):
install_requires.append('pathlib')
setup(name='thefuck',
version=VERSION,
@ -28,7 +33,7 @@ setup(name='thefuck',
'tests', 'release']),
include_package_data=True,
zip_safe=False,
install_requires=['pathlib', 'psutil', 'colorama', 'six'],
install_requires=install_requires,
entry_points={'console_scripts': [
'thefuck = thefuck.main:main',
'thefuck-alias = thefuck.shells:app_alias']})