forked from camptocamp/anthem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.19 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
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 :: 2',
'Programming Language :: Python :: 2 :: Only',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
),
)