-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
34 lines (32 loc) · 1.11 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
from setuptools import find_packages, setup
with open("README.rst") as f:
readme = f.read()
with open("HISTORY.rst") as f:
history = f.read()
setup(
name="anthem",
use_scm_version=True,
description="Make your Odoo scripts sing.",
long_description=readme + "\n\n" + history,
author="Camptocamp",
author_email="[email protected]",
url="https://github.com/camptocamp/anthem",
license="LGPLv3+",
packages=find_packages(exclude=("tests", "docs")),
entry_points={"console_scripts": ["anthem = anthem.cli:main"]},
install_requires=["future", "unicodecsv"],
setup_requires=[
"setuptools_scm",
],
classifiers=(
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
),
)