forked from camptocamp/marabunta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 1.74 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
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
import re
from setuptools import setup, find_packages
with open('marabunta/core.py') as f:
version = re.search('^__version__\s*=\s*"(.*)"', f.read(), re.M).group(1)
with open('README.rst') as f:
readme = f.read()
with open('HISTORY.rst') as f:
history = f.read()
setup(
name='marabunta',
version=version,
description='Migration tool for Odoo',
long_description=readme + '\n\n' + history,
author='Camptocamp (Guewen Baconnier)',
author_email='guewen.baconnier@camptocamp.com',
url='/~https://github.com/camptocamp/marabunta',
license='AGPLv3+',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=["psycopg2-binary",
"PyYAML",
"pexpect",
"werkzeug",
"future",
],
tests_require=["pytest",
"mock"],
include_package_data=True,
package_data={
'marabunta': ['html/*.html'],
},
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: '
'GNU Affero General Public License v3 or later (AGPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
),
entry_points={
'console_scripts': ['marabunta = marabunta.core:main']
},
)