-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·55 lines (48 loc) · 1.47 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
"""
cloudydict
======
Right now cloud file access in Python is about where database access
was in the mid 90's. Each database wrapper author has their very own
nomenclature, sets of commands for doing things that are basically the
same - creating cursors, executing commands and reading rows.
cloudydict seeks to do for cloud file providers what the Python
Database API does for database access. Cloud file style servces like
Rackspace's cloud files and Amazon's S3 really are nothing more than
dictionaries that map fixed strings to
"""
from setuptools import setup
setup(
name='cloudydict',
version='0.0.20',
author='Adam DePrince',
author_email='[email protected]',
description='Dictionary interface to cloud providers.',
long_description=__doc__,
py_modules=[
"cloudydict/__init__",
"cloudydict/s3",
"cloudydict/common",
"cloudydict/cloudfiles",
"cloudydict/django_storage",
],
packages=["cloudydict"],
zip_safe=True,
license='GPL',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha'
],
scripts=[
],
url="http://wnyc.github.io/cloudydict/",
install_requires=[
"boto",
"python-cloudfiles",
# "appengine",
]
)