-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (29 loc) · 1.1 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
#!/usr/bin/env python
from distutils.core import setup
name = 'openerp_libclient'
version = '0.8'
setup(
name=name,
version=version,
description='Client Library for the OpenERP protocol',
long_description="This library allows client applications connect and work "
"against an OpenERP server.",
license='LGPLv3',
platforms='Platform Independent',
author="Panos Christeas",
author_email='[email protected]',
url='http://git.hellug.gr/?p=xrg/openerp-libcli',
download_url="http://git.hellug.gr/?p=xrg/openerp-libcli",
packages=['openerp_libclient', 'openerp_libclient.extra'],
keywords=['xml-rpc', 'openerp', 'client', 'python',],
classifiers=[
'Development Status :: 1 - Experimental',
'Environment :: Libraries',
'Intended Audience :: Developers',
'License :: OSI Approved :: LGPL v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Filesystems',
],
)