forked from acsone/bobtemplates.odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright © 2016 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from setuptools import find_packages, setup
setup(
name="bobtemplates.odoo",
use_scm_version=True,
description="mr.bob templates for Odoo projects",
long_description="\n".join((open("README.rst").read(), open("CHANGES.rst").read())),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: "
"GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Odoo",
],
license="LGPLv3",
author="ACSONE SA/NV",
author_email="[email protected]",
url="http://github.com/acsone/bobtemplates.odoo",
install_requires=["mr.bob"],
packages=find_packages(exclude=["tests"]),
# TODO: bobtemplates.odoo should be a ns package too but that breaks mr.bob
namespace_packages=["bobtemplates"],
include_package_data=True,
setup_requires=["setuptools_scm"],
)