forked from OCA/odoo-module-migrator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.24 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
# Copyright (C) 2019 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
import setuptools
setuptools.setup(
name="odoo-migrate",
version="0.2.3",
author="GRAP, Groupement Régional Alimentaire de Proximité",
author_email="informatique@grap.coop",
description="Small tools to migrate Odoo modules from a version"
" to another",
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url="https://github.com/grap/odoo-migrate",
packages=['odoo_migrate', 'odoo_migrate.migration_scripts'],
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Odoo",
"Topic :: Software Development :: Code Generators",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Environment :: Console",
],
install_requires=open('requirements.txt').read().splitlines(),
entry_points=dict(
console_scripts=['odoo-migrate=odoo_migrate.__main__:main']),
keywords=[
"Odoo Community Association (OCA)",
"Odoo", "Migration", "Upgrade", "Module",
],
)