2015-04-08 18:15:49 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
2015-05-03 12:59:37 +02:00
|
|
|
VERSION = '1.33'
|
2015-04-21 22:30:15 +02:00
|
|
|
|
|
|
|
|
2015-04-08 18:15:49 +02:00
|
|
|
setup(name='thefuck',
|
2015-04-21 22:30:15 +02:00
|
|
|
version=VERSION,
|
2015-04-08 18:19:01 +02:00
|
|
|
description="Magnificent app which corrects your previous console command",
|
|
|
|
author='Vladimir Iakovlev',
|
|
|
|
author_email='nvbn.rm@gmail.com',
|
|
|
|
url='https://github.com/nvbn/thefuck',
|
|
|
|
license='MIT',
|
2015-04-21 22:30:15 +02:00
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples',
|
|
|
|
'tests', 'release']),
|
2015-04-08 18:15:49 +02:00
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2015-04-22 16:45:38 +02:00
|
|
|
install_requires=['pathlib', 'psutil', 'colorama', 'six'],
|
2015-04-08 18:15:49 +02:00
|
|
|
entry_points={'console_scripts': [
|
2015-05-01 00:12:43 +05:30
|
|
|
'thefuck = thefuck.main:main', 'thefuck-alias = thefuck.main:alias']})
|