-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·27 lines (26 loc) · 907 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import codecs
from corduroy import __version__ as VERSION
README=codecs.open('README.rst', encoding='utf-8').read()
LICENSE=codecs.open('LICENSE', encoding='utf-8').read()
setup(
name='corduroy',
version=VERSION,
author='Christian Swinehart',
author_email='[email protected]',
packages=['corduroy', 'corduroy.tests'],
url='http://samizdat.cc/corduroy',
license=LICENSE,
description='An asynchronous CouchDB client library',
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)