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
|
#!/usr/bin/env python
"""Installs restclient using distutils
Run:
python setup.py install
to install the package from the source archive.
"""
import sys,os, string
from setuptools import setup
from sys import hexversion
if __name__ == "__main__":
### Now the actual set up call
setup (
name = "RESTClient",
version = "1.0.0",
description = "Client code to upload files to TurboGears",
author = "Mike C. Fletcher",
author_email = "mcfletch@vrplumber.com",
license = "BSD-style, see license.txt for details",
zip_safe=False,
package_dir = {
'restclient':'.',
},
)
|