forked from osiell/oerplib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (66 loc) · 2.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
import os
from distutils.core import setup
name = 'OERPLib'
version = '0.8.4'
description = ("OERPLib is a Python module providing an easy way to "
"pilot your OpenERP and Odoo servers through RPC.")
keywords = ("openerp odoo server client xml-rpc xmlrpc net-rpc netrpc "
"oerplib communication lib library python service web webservice")
author = "ABF Osiell - Sebastien Alix"
author_email = '[email protected]'
url = 'http://pythonhosted.org/OERPLib/'
download_url = 'http://pypi.python.org/packages/source/O/OERPLib/OERPLib-%s.tar.gz' % version
license = 'LGPL v3'
doc_build_dir = 'doc/build'
doc_source_dir = 'doc/source'
cmdclass = {}
command_options = {}
# 'build_doc' option
try:
from sphinx.setup_command import BuildDoc
if not os.path.exists(doc_build_dir):
os.mkdir(doc_build_dir)
cmdclass.update({'build_doc': BuildDoc})
command_options.update({
'build_doc': {
#'project': ('setup.py', name),
'version': ('setup.py', version),
'release': ('setup.py', version),
'source_dir': ('setup.py', doc_source_dir),
'build_dir': ('setup.py', doc_build_dir),
'builder': ('setup.py', 'html'),
}})
except Exception:
print("No Sphinx module found. You have to install Sphinx "
"to be able to generate the documentation.")
setup(name=name,
version=version,
description=description,
long_description=open('README.rst').read(),
keywords=keywords,
author=author,
author_email=author_email,
url=url,
download_url=download_url,
packages=['oerplib',
'oerplib.rpc',
'oerplib.service',
'oerplib.service.osv',
'oerplib.service.inspect',
'oerplib.tools'],
license=license,
cmdclass=cmdclass,
command_options=command_options,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: