|
5 | 5 | # Copyright (C) 2011 Nicolas Vanhoren |
6 | 6 | # Copyright (C) 2011 OpenERP s.a. (<http://openerp.com>) |
7 | 7 | # Copyright (C) 2018 Odoo s.a. (<http://odoo.com>). |
| 8 | +# Copyright (C) 2025 Jimmy McCann |
8 | 9 | # All rights reserved. |
9 | 10 | # |
10 | 11 | # Redistribution and use in source and binary forms, with or without |
|
33 | 34 | from distutils.core import setup |
34 | 35 |
|
35 | 36 | 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", |
42 | 43 | packages=["odoolib"], |
43 | 44 | install_requires=[ |
44 | 45 | "requests", |
45 | 46 | "asyncio", |
46 | 47 | ], |
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 .", |
48 | 49 | keywords="openerp library com communication rpc xml-rpc net-rpc xmlrpc python client lib web service", |
49 | 50 | license="BSD", |
50 | 51 | classifiers=[ |
51 | 52 | "License :: OSI Approved :: BSD License", |
52 | 53 | "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", |
53 | 59 | ], |
54 | 60 | ) |
0 commit comments