mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
22 lines
712 B
Python
22 lines
712 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
VERSION = '1.44'
|
|
|
|
|
|
setup(name='thefuck',
|
|
version=VERSION,
|
|
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', 'release']),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=['pathlib', 'psutil', 'colorama', 'six'],
|
|
entry_points={'console_scripts': [
|
|
'thefuck = thefuck.main:main',
|
|
'thefuck-alias = thefuck.shells:app_alias']})
|