From 327c3a0cf5647ef6ae7a8fc273f7db70a3c4ee90 Mon Sep 17 00:00:00 2001 From: nvbn Date: Wed, 8 Apr 2015 18:19:01 +0200 Subject: [PATCH] Fill setup.py --- setup.cfg | 3 --- setup.py | 25 +++++++------------------ 2 files changed, 7 insertions(+), 21 deletions(-) delete mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 01bb9544..00000000 --- a/setup.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[egg_info] -tag_build = dev -tag_svn_revision = true diff --git a/setup.py b/setup.py index 6f638e9b..783d9037 100644 --- a/setup.py +++ b/setup.py @@ -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']})