-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
30 lines (28 loc) · 864 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
long_description = open('README.rst').read()
setup(
name='tswift',
version='0.7.0',
description='MetroLyrics API',
long_description=long_description,
install_requires=['lxml', 'requests', 'google>=2.0'],
url='https://github.com/brenns10/tswift',
author='Stephen Brennan',
author_email='[email protected]',
license='Revised BSD',
py_modules=['tswift'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Topic :: Multimedia :: Sound/Audio',
'Natural Language :: English',
],
keywords='lyrics metrolyrics scrape',
entry_points={
'console_scripts': [
'tswift=tswift:main',
],
},
)