|
gael@0
|
1 |
from setuptools import setup, find_packages |
|
gael@0
|
2 |
import sys, os |
|
gael@0
|
3 |
|
|
gael@0
|
4 |
version = '0.1' |
|
gael@0
|
5 |
|
|
gael@0
|
6 |
setup(name='flickr2couchdb', |
|
gael@0
|
7 |
version=version, |
|
gael@0
|
8 |
description="", |
|
gael@0
|
9 |
long_description="""\ |
|
gael@0
|
10 |
""", |
|
gael@0
|
11 |
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
|
gael@0
|
12 |
keywords='', |
|
gael@0
|
13 |
author='Gael Pasgrimaud', |
|
gael@0
|
14 |
author_email='gael@gawel.org', |
|
gael@0
|
15 |
url='', |
|
gael@0
|
16 |
license='MIT', |
|
gael@0
|
17 |
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
|
gael@0
|
18 |
include_package_data=True, |
|
gael@0
|
19 |
zip_safe=False, |
|
gael@0
|
20 |
install_requires=[ |
|
gael@0
|
21 |
# -*- Extra requirements: -*- |
|
gael@0
|
22 |
'flickrapi', |
|
gael@12
|
23 |
'restkit>=1.2', |
|
gael@12
|
24 |
'couchdbkit>=0.4.5', |
|
gael@0
|
25 |
'simplejson', |
|
gael@0
|
26 |
'iw.thumbs', |
|
gael@5
|
27 |
'ConfigObject', |
|
gael@5
|
28 |
'WSGIProxy', |
|
gael@5
|
29 |
'WebOb', |
|
gael@10
|
30 |
'Beaker', |
|
gael@0
|
31 |
], |
|
gael@0
|
32 |
entry_points=""" |
|
gael@0
|
33 |
# -*- Entry points: -*- |
|
gael@0
|
34 |
[console_scripts] |
|
gael@0
|
35 |
flickr2couchdb = flickr2couchdb.scripts:main |
|
gael@0
|
36 |
[paste.app_factory] |
|
gael@0
|
37 |
main = flickr2couchdb.wsgi:make_app |
|
gael@0
|
38 |
proxy = flickr2couchdb.proxy:make_app |
|
gael@0
|
39 |
""", |
|
gael@0
|
40 |
) |