-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.16 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
#!/usr/bin/env python -t3
# -*- coding: utf-8 -*-
# Copyright (C) 2011 by Andrew Regner <[email protected]>
import os
from distutils.core import setup
from clouddb import consts
setup_params = {}
setup_params['name'] = "clouddb"
setup_params['version'] = consts.__version__
setup_params['description'] = "Python object oriended model-based interface to the Rackspace Cloud Databases API."
setup_params["long_description"] = "".join([
"",
])
setup_params['author'] = "Andrew Regner"
setup_params['author_email'] = "[email protected]"
setup_params['url'] = "http://adregner.github.com/python-clouddb/"
setup_params['license'] = "MIT"
#setup_params['scripts'] = [
# "",
# ]
setup_params['packages'] = [
"clouddb",
"clouddb.api",
"clouddb.models",
]
setup_params['data_files'] = [
("share/doc/python-%s" % setup_params['name'], [
"COPYING",
"README",
]),
]
#setup_params['requires'] = [
# "",
# ]
# make a link to the readme file so we can pretend it is normal
if not os.path.isfile("README"):
os.link("README.md", "README")
setup(**setup_params)