You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.3KB

  1. # Copyright (C) 2019 - Today: GRAP (http://www.grap.coop)
  2. # @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. import setuptools
  5. setuptools.setup(
  6. name="odoo-module-migrator",
  7. version="0.3.2",
  8. author="GRAP, Groupement Régional Alimentaire de Proximité",
  9. author_email="informatique@grap.coop",
  10. description="Small tools to migrate Odoo modules from a version"
  11. " to another",
  12. long_description=open('README.rst').read(),
  13. long_description_content_type='text/x-rst',
  14. url="https://github.com/OCA/odoo-module-migrator",
  15. packages=['odoo_module_migrate', 'odoo_module_migrate.migration_scripts'],
  16. include_package_data=True,
  17. classifiers=[
  18. "Development Status :: 3 - Alpha",
  19. "Framework :: Odoo",
  20. "Topic :: Software Development :: Code Generators",
  21. "Programming Language :: Python :: 3",
  22. "License :: OSI Approved :: GNU Affero General Public License v3",
  23. "Environment :: Console",
  24. ],
  25. install_requires=open('requirements.txt').read().splitlines(),
  26. entry_points=dict(console_scripts=[
  27. 'odoo-module-migrate=odoo_module_migrate.__main__:main',
  28. ]),
  29. keywords=[
  30. "Odoo Community Association (OCA)",
  31. "Odoo", "Migration", "Upgrade", "Module",
  32. ],
  33. )
上海开阖软件有限公司 沪ICP备12045867号-1