|
| 1 | +## |
| 2 | +# Project: PyOdoo |
| 3 | +# Description: API for Odoo |
| 4 | +# Author: Fabio Castelli (Muflone) <muflone@muflone.com> |
| 5 | +# Copyright: 2021 Fabio Castelli |
| 6 | +# License: GPL-3+ |
| 7 | +# This program is free software: you can redistribute it and/or modify |
| 8 | +# it under the terms of the GNU General Public License as published by |
| 9 | +# the Free Software Foundation, either version 3 of the License, or |
| 10 | +# (at your option) any later version. |
| 11 | +# |
| 12 | +# This program is distributed in the hope that it will be useful, |
| 13 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | +# GNU General Public License for more details. |
| 16 | +# |
| 17 | +# You should have received a copy of the GNU General Public License |
| 18 | +# along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 19 | +## |
| 20 | + |
| 21 | +import os.path |
| 22 | +import setuptools |
| 23 | + |
| 24 | +import pyodoo.constants |
| 25 | + |
| 26 | + |
| 27 | +with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), |
| 28 | + 'README.md'), |
| 29 | + encoding='utf-8') as f: |
| 30 | + long_description = f.read() |
| 31 | + |
| 32 | +setuptools.setup( |
| 33 | + name=pyodoo.constants.APP_NAME, |
| 34 | + version=pyodoo.constants.APP_VERSION, |
| 35 | + author=pyodoo.constants.APP_AUTHOR, |
| 36 | + author_email=pyodoo.constants.APP_AUTHOR_EMAIL, |
| 37 | + description=pyodoo.constants.APP_DESCRIPTION, |
| 38 | + long_description=long_description, |
| 39 | + long_description_content_type='text/markdown', |
| 40 | + url=pyodoo.constants.APP_URL, |
| 41 | + packages=setuptools.find_packages(), |
| 42 | + classifiers=[ |
| 43 | + 'Development Status :: 1 - Planning ', |
| 44 | + 'Intended Audience :: Developers', |
| 45 | + 'License :: OSI Approved :: ' |
| 46 | + 'GNU General Public License v3 or later (GPLv3+)', |
| 47 | + 'Operating System :: OS Independent', |
| 48 | + 'Programming Language :: Python :: 3', |
| 49 | + 'Programming Language :: Python :: 3.9', |
| 50 | + 'Topic :: Software Development :: Libraries :: Python Modules' |
| 51 | + ], |
| 52 | +) |
0 commit comments