-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
76 lines (59 loc) · 2.1 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
72
73
74
75
#/usr/bin/env python
name = 'docfield'
long_name = 'django-docfield-couchdb'
version = '0.2.4'
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
*) NEW in 1.1: an error-free setup.py install experience!
And MORE!!! Coming soon of course.
"""
classifiers = [
'Development Status :: 5 - Production/Stable',
'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' % long_name),
author=u"Alexander Bohn",
author_email='[email protected]',
url='http://github.com/fish2000/%s' % long_name,
license='GPLv2',
keywords=', '.join(keywords),
platforms=['any'],
include_package_data=True,
packages=[]+packages,
package_dir={},
package_data={},
install_requires=['django-delegate', 'couchdbkit'],
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy'],
)