Skip to content

Commit 944dce0

Browse files
committed
update setup.py
1 parent d9833e3 commit 944dce0

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

setup.py

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (C) 2011 Nicolas Vanhoren
66
# Copyright (C) 2011 OpenERP s.a. (<http://openerp.com>)
77
# Copyright (C) 2018 Odoo s.a. (<http://odoo.com>).
8+
# Copyright (C) 2025 Jimmy McCann
89
# All rights reserved.
910
#
1011
# Redistribution and use in source and binary forms, with or without
@@ -33,22 +34,27 @@
3334
from distutils.core import setup
3435

3536
setup(
36-
name="odoo-client-lib",
37-
version="1.2.1",
38-
description="Odoo Client Library allows to easily interact with Odoo in Python.",
39-
author="Nicolas Vanhoren",
40-
author_email="",
41-
url="",
37+
name="mccann-hub_odoo-client-lib",
38+
version="2.0.0",
39+
description="Extended Odoo Client Library allows to easily interact with Odoo in Python.",
40+
author="Nicolas Vanhoren, Jimmy McCann",
41+
author_email="jabez007@users.noreply.github.com",
42+
url="https://github.com/jabez007/odoo-client-lib",
4243
packages=["odoolib"],
4344
install_requires=[
4445
"requests",
4546
"asyncio",
4647
],
47-
long_description="See the home page for any information: https://github.com/odoo/odoo-client-lib .",
48+
long_description="Extended Odoo Client Library with additional features. See original project home page for additional information: https://github.com/odoo/odoo-client-lib .",
4849
keywords="openerp library com communication rpc xml-rpc net-rpc xmlrpc python client lib web service",
4950
license="BSD",
5051
classifiers=[
5152
"License :: OSI Approved :: BSD License",
5253
"Programming Language :: Python",
54+
"Programming Language :: Python :: 3.9",
55+
"Programming Language :: Python :: 3.10",
56+
"Programming Language :: Python :: 3.11",
57+
"Programming Language :: Python :: 3.12",
58+
"Programming Language :: Python :: 3.13",
5359
],
5460
)

0 commit comments

Comments
 (0)