-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
69 lines (64 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
if (sys.version_info[:3] < (3, 0)):
with open('README.rst') as f:
readme = f.read()
else:
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('HISTORY.rst') as f:
history = f.read()
test_deps = [
"pytest",
"mock",
]
extras = {
'test': test_deps,
}
setup(
name='marabunta',
use_scm_version=True,
description='Migration tool for Odoo',
long_description=readme + '\n\n' + history,
author='Camptocamp (Guewen Baconnier)',
author_email='[email protected]',
url='https://github.com/camptocamp/marabunta',
license='AGPLv3+',
packages=find_packages(exclude=('tests', 'docs')),
install_requires=[
"psycopg2",
"ruamel.yaml>=0.15.1",
"pexpect",
"werkzeug",
"future",
],
setup_requires=[
'setuptools_scm',
],
tests_require=test_deps,
extras_require=extras,
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 :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
),
entry_points={
'console_scripts': ['marabunta = marabunta.core:main']
},
)