forked from fish2000/django-docfield-couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (56 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#/usr/bin/env python
name = 'docfield'
long_name = 'django-docfield-couchdb'
version = '0.1.1'
packages = [name]
description = "Django fields for representing CouchDB docs and more."
keywords = [
'django','couchdb','json','NoSQL','database',
'utility','fields','models','trees','fields',
]
long_description = """
Django fields and other add-ons that represent key CouchDB data structures:
*) Docs, which can authoratively reside in either Couch or your Django RDBMS
*) Arbitrary JSON subtrees
*) CouchDB _id and _rev identifiers
And MORE! Coming soon of course. (next up, JSON diff views and widgets!)
"""
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Environment :: Other Environment',
'Environment :: Plugins',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Database',
'Topic :: Utilities',
]
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name=long_name, version=version, description=description,
long_description=long_description,
download_url=('http://github.com/fish2000/%s/zipball/master' % name),
author=u"Alexander Bohn",
author_email='fish2000@gmail.com',
url='http://github.com/fish2000/%s/' % name,
license='GPLv2',
keywords=', '.join(keywords),
platforms=['any'],
packages=[]+packages,
package_dir={},
package_data={},
install_requires=[
'couchdbkit', 'simplejson'],
classifiers=classifiers+[
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6'],
)