From 2b0b6395b129daf85b0032d0fcb41b33fadae630 Mon Sep 17 00:00:00 2001 From: 9and3r <9and3r@gmail.com> Date: Sat, 19 Jul 2014 22:12:45 +0200 Subject: [PATCH] Delete setup.py~ --- setup.py~ | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 setup.py~ diff --git a/setup.py~ b/setup.py~ deleted file mode 100644 index 48fb16a..0000000 --- a/setup.py~ +++ /dev/null @@ -1,49 +0,0 @@ -from __future__ import unicode_literals - -import re - -from setuptools import find_packages, setup - - -def get_version(filename): - content = open(filename).read() - metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", content)) - return metadata['version'] - - -setup( - name='Mopidy-Touchscreen', - version=get_version('mopidy_touchscreen/__init__.py'), - url='https://github.com/9and3r/mopidy-touchscreen', - license='Apache License, Version 2.0', - author='9and3r', - author_email='9and3r@gmail.com', - description='Mopidy extension to show info on a display and control from it', - long_description=open('README.rst').read(), - packages=find_packages(exclude=['tests', 'tests.*']), - zip_safe=False, - include_package_data=True, - install_requires=[ - 'setuptools', - 'Mopidy >= 0.17', - 'Pykka >= 1.1', - ], - test_suite='nose.collector', - tests_require=[ - 'nose', - 'mock >= 1.0', - ], - entry_points={ - 'mopidy.ext': [ - 'touchscreen = mopidy_touchscreen:Extension', - ], - }, - classifiers=[ - 'Environment :: No Input/Output (Daemon)', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: Apache Software License', - 'Operating System :: OS Independent', - 'Programming Language :: Python :: 2', - 'Topic :: Multimedia :: Sound/Audio :: Players', - ], -)