forked from thomasvs/paisley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (24 loc) · 748 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (24 loc) · 748 Bytes
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
#!/usr/bin/env python
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4
# Copyright (c) 2007-2008
# See LICENSE for details.
from distutils.core import setup
import setuptools
def main():
setup(
name="paisley",
version="0.3.1",
description=("Paisley is a CouchDB client written in Python to be used "
"within a Twisted application."),
author="Paisley Developers",
author_email="",
license="MIT",
url="http://github.com/smcq/paisley",
download_url="http://github.com/smcq/paisley/zipball/v0.3.1",
packages = setuptools.find_packages (),
package_data = {
'': ['*.template'],
})
if __name__ == "__main__":
main()