works with CDATA tags

This commit is contained in:
Matt Jeffery 2013-03-01 19:38:41 +00:00
parent 78aac5c437
commit e2cc69a7e8
7 changed files with 116 additions and 130 deletions

9
setup.py Executable file → Normal file
View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
from distutils.core import setup
try:
from setuptools import setup
except:
from distutils.core import setup
import os
def get_build():
@ -22,11 +25,11 @@ def get_build():
return str(build)
setup(name = "pylast",
version = "0.1+0.5." + get_build(),
version = "0.5." + get_build(),
author = "Amr Hassan <amr.hassan@gmail.com>",
description = "A Python interface to Last.fm (and other API compatible social networks)",
author_email = "amr.hassan@gmail.com",
url = "https://github.com/Elizacat/",
url = "http://code.google.com/p/pylast/",
py_modules = ("pylast",),
license = "Apache2"
)