mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
17 lines
568 B
Python
17 lines
568 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(name='thefuck',
|
|
version=1.12,
|
|
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']})
|