1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-07 13:41:21 +00:00
thefuck/setup.py

17 lines
557 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-17 22:42:18 +02:00
version=1.7,
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-17 16:24:03 +02:00
install_requires=['pathlib'],
2015-04-08 18:15:49 +02:00
entry_points={'console_scripts': [
2015-04-08 18:19:01 +02:00
'thefuck = thefuck.main:main']})