1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-19 04:21:14 +00:00
thefuck/setup.py

17 lines
568 B
Python
Raw Normal View History

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,
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']})