2015-04-08 18:15:49 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='thefuck',
|
2015-04-21 08:38:52 +02:00
|
|
|
version=1.20,
|
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-08 18:15:49 +02:00
|
|
|
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
2015-04-18 22:50:18 +02:00
|
|
|
install_requires=['pathlib', 'psutil'],
|
2015-04-08 18:15:49 +02:00
|
|
|
entry_points={'console_scripts': [
|
2015-04-08 18:19:01 +02:00
|
|
|
'thefuck = thefuck.main:main']})
|