forked from akretion/odoo2dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.17 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
# Copyright (C) 2020 - Today: Akretion (http://www.akretion.com)
# @author: David BEAL @ Akretion
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from setuptools import find_packages
import setuptools
setuptools.setup(
name="odoo2dev",
version="0.3.3",
author="Akretion",
author_email="[email protected]",
license="AGPLv3+",
description="Make your production odoo db copy, dev ready",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
url="https://github.com/akretion/odoo2dev",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Odoo",
"Topic :: Software Development :: Dev tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Environment :: Console",
],
install_requires=open("requirements.txt").read().splitlines(),
entry_points=dict(console_scripts=[
"odev=odoo2dev.main:main",
]),
keywords=[
"Odoo", "Development", "ERP", "Module", "Security"
],
)