Skip to content

Commit

Permalink
Added 'lxml' requirement and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzeman committed May 7, 2014
1 parent df63c7c commit 19d9412
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
lxml
futures>=2.1.3
protobuf>=2.5.0
pyemitter
Expand Down
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from spotify import __version__

from setuptools import setup, find_packages
import os

# Read requirements (for the 'install_requires' parameter)
base_path = os.path.dirname(os.path.abspath(__file__))
requirements = open(os.path.join(base_path, 'requirements.txt'))

setup(
name='spotify.py',
version=__version__,
url='https://github.com/fuzeman/spotify.py',

author='Dean Gardiner',
author_email='[email protected]',

description='',
packages=find_packages(exclude=['tests', 'tests.*']),
platforms='any',

install_requires=[r.strip() for r in requirements.readlines()],

classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
)
1 change: 1 addition & 0 deletions spotify/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.5.0-beta'

0 comments on commit 19d9412

Please sign in to comment.