forked from djc/couchdb-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (37 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·40 lines (37 loc) · 1.26 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2007-2009 Christopher Lenz
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
import sys
from setuptools import setup
setup(
name = 'CouchDB',
version = '2.0a1',
description = 'Python library for working with CouchDB',
long_description = \
"""This is a Python library for CouchDB. It provides a convenient high level
interface for the CouchDB server.""",
author = 'Christopher Lenz',
author_email = 'cmlenz@gmx.de',
maintainer = 'Dirkjan Ochtman',
maintainer_email = 'dirkjan@ochtman.nl',
license = 'BSD',
url = 'https://github.com/djc/couchdb-python/',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ['couchdb', 'couchdb.tests'],
install_requires = ['requests'],
test_suite = 'couchdb.tests.__main__.suite',
zip_safe = True,
)