1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00
thefuck/setup.py

17 lines
568 B
Python
Raw Normal View History

2015-04-08 17:15:49 +01:00
from setuptools import setup, find_packages
setup(name='thefuck',
2015-04-21 05:34:03 +01:00
version=1.17,
2015-04-08 17:19:01 +01: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 17:15:49 +01:00
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=['pathlib', 'psutil'],
2015-04-08 17:15:49 +01:00
entry_points={'console_scripts': [
2015-04-08 17:19:01 +01:00
'thefuck = thefuck.main:main']})