forked from saymedia/python-simpledb
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
19 lines (18 loc) · 485 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 485 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
importos
fromdistutils.coreimportsetup
setup(
name='simpledb',
version='1.0',
description='Python SimpleDB API SDK',
long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(),
author='Michael Malone',
author_email='mjmalone@gmail.com',
url='http://github.com/sixapart/python-simpledb',
packages=['simpledb'],
provides=['simpledb'],
requires=[
'httplib2',
'elementtree',
]
)