1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-05 18:31:10 +01:00
thefuck/setup.py

17 lines
568 B
Python

from setuptools import setup, find_packages
setup(name='thefuck',
version=1.11,
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',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=['pathlib', 'psutil'],
entry_points={'console_scripts': [
'thefuck = thefuck.main:main']})