-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 940 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 940 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
import os
from setuptools import setup
# Utility function to pass text files content as setup() parameters.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="OpenERPJSONRPCClient",
version='0.1.2',
packages=['openerp_jsonrpc_client'],
license=read('LICENCE.txt'),
author="Cyril MORISSE",
author_email="cmorisse@boxes3.net",
description=("A library to make RPC on an OpenERP Server using the JSON-RPC protocol."),
keywords='openerp rpc jsonrpc client',
url="http://bitbucket.org/cmorisse/openerp-jsonrpc-client",
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP'
],
install_requires = ['requests>=1.1.0', ],
)