forked from tfrancoi/odoo_csv_import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.61 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
# -*- coding: utf-8 -*-
'''
Copyright (C) Thibault Francois
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Lesser Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
'''
from setuptools import setup, find_packages
setup(name='odoo-import-export-client',
version='2.2.0',
install_requires=['odoo-client-lib', 'future', 'unicodecsv', 'requests'],
description='Library and script that allow to export and import data to Odoo using rpc api.',
author='Thibault Francois',
author_email='[email protected]',
url='https://github.com/tfrancoi/odoo_csv_import',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
scripts=['odoo_export_thread.py', 'odoo_import_thread.py', 'odoo_convert_path_to_image.py', 'odoo_convert_url_to_image.py'],
long_description="See the home page for any information: https://github.com/tfrancoi/odoo_csv_import",
keywords="odoo library import export thread python client lib web service",
license="LGPLv3",
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
],
)