mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-21 01:59:10 +00:00
Merge branch 'master' of https://github.com/mkreder/thefuck into mkreder-master
This commit is contained in:
commit
a8de919300
7
setup.py
7
setup.py
@ -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']})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user