switch to simplejson and complete setup.py

This commit is contained in:
Jan Dittberner 2009-01-20 16:14:35 +01:00
parent 8e6a6f74e5
commit 2cf7e9d67a
2 changed files with 9 additions and 5 deletions

View file

@ -26,9 +26,13 @@ array of URLs.""",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
package_data= {
'ddportfolioservice' : ['*.ini'],
},
install_requires=[
# -*- Extra requirements: -*-
'PasteDeploy',
'python-json'
# -*- Extra requirements: -*-
'Paste',
'PasteDeploy',
'simplejson'
],
)