-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
47 lines (41 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
47
# Copyright 2018 ACSONE SA/NV (<http://acsone.eu>)
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
long_description = []
with open(os.path.join("README.rst")) as f:
long_description.append(f.read())
with open(os.path.join("CHANGES.rst")) as f:
long_description.append(f.read())
setup(
name="click-odoo",
description="Beautiful, robust CLI for Odoo",
long_description="\n".join(long_description),
use_scm_version=True,
packages=["click_odoo"],
include_package_data=True,
setup_requires=["setuptools_scm"],
install_requires=["click>=7"],
python_requires=">=3.6",
license="LGPLv3+",
author="ACSONE SA/NV",
author_email="[email protected]",
url="http://github.com/acsone/click-odoo",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Odoo",
],
entry_points="""
[console_scripts]
click-odoo=click_odoo.cli:main
""",
)