-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
79 lines (74 loc) · 2.7 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
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
import os.path
import sys
from setuptools import setup
# workaround for: https://github.com/travis-ci/travis-ci/issues/1778
import multiprocessing # noqa
# load version info
version_file = os.path.join(os.path.dirname(__file__),
'openerp_proxy',
'version.py')
if sys.version_info < (3,):
execfile(version_file)
else:
with open(version_file, 'rb') as f:
exec(compile(f.read(), version_file, 'exec'))
setup(name='openerp_proxy',
version=version,
description='Odoo/OpenERP CLI interface and library for RPC',
author='Dmytro Katyukha',
author_email='[email protected]',
url='https://github.com/katyukha/openerp-proxy',
long_description=open('README.rst').read(),
packages=['openerp_proxy',
'openerp_proxy.connection',
'openerp_proxy.service',
'openerp_proxy.orm',
'openerp_proxy.ext',
'openerp_proxy.ext.repr',
'openerp_proxy.tests',
'openerp_proxy.plugins',
'openerp_proxy.experimental',
'openerp_proxy.plugins.diagraming'],
scripts=['bin/openerp_proxy'],
license="GPL",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['openerp', 'odoo', 'odoo-rpc', 'rpc', 'xmlrpc',
'xml-rpc', 'json-rpc', 'jsonrpc', 'odoo-client', 'ipython'],
extras_require={
'all': ['ipython[all]', 'anyfield'],
},
install_requires=[
'tabulate>=0.7.5', # repr extension
'six>=1.10',
'extend_me>=1.1.3',
'setuptools>=18',
'requests>=2.7',
'ipython>=4', # repr extension
'Jinja2',
'odoo-rpc-client>=0.9.0',
],
tests_require=[
'mock',
'ipython[notebook]',
'coverage',
'anyfield',
],
test_suite='openerp_proxy.tests.all',
)