-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.1 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.1 KB
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
31
from distutils.core import setup
setup(
name = 'lastfmcache',
packages = ['lastfmcache'],
version = '1.2.4',
description = 'Python interface to the Last.FM API/website with caching support',
url = 'https://github.com/spiritualized/lastfmcache',
download_url = 'https://github.com/spiritualized/lastfmcache/archive/v1.2.4.tar.gz',
keywords = ['lastfm', 'python', 'cache', 'api'],
install_requires = [
'bs4',
'cryptography',
'html5lib',
'pylast',
'pymysql',
'requests',
'sqlalchemy',
'sqlalchemy-utils',
'unidecode'
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)