Files
thefuck/setup.py
T
2015-04-08 18:15:49 +02:00

27 lines
651 B
Python

from setuptools import setup, find_packages
version = '1'
setup(name='thefuck',
version=version,
description="",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='',
author_email='',
url='',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points={'console_scripts': [
'thefuck = thefuck.main:main',
]},
)