1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-18 12:06:04 +00:00

Fill setup.py

This commit is contained in:
nvbn 2015-04-08 18:19:01 +02:00
parent 71f1f4224b
commit 327c3a0cf5
2 changed files with 7 additions and 21 deletions

View File

@ -1,3 +0,0 @@
[egg_info]
tag_build = dev
tag_svn_revision = true

View File

@ -1,26 +1,15 @@
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='',
version=1.0,
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=[
# -*- Extra requirements: -*-
],
entry_points={'console_scripts': [
'thefuck = thefuck.main:main',
]},
)
'thefuck = thefuck.main:main']})