-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.67 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
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
test_deps = [
"pytest",
"mock",
]
extras = {
'test': test_deps,
}
setup(
name='maraplus',
use_scm_version=True,
description="Migration and setup tool for Odoo",
long_description=readme,
author="Focusate (Andrius Laukavičius)",
author_email='[email protected]',
url="https://github.com/focusate/maraplus",
license='AGPLv3+',
packages=find_packages(),
install_requires=[
'marabunta>=0.12.0',
'mergedeep>=1.3.4',
'PyYAML>=6.0.1',
# marabunta uses distutils, but it was removed in 3.12, so
# we must install setuptools manually, before marabunta fixes
# this themselves.
'setuptools>=70.3.0',
],
tests_require=test_deps,
extras_require=extras,
setup_requires=[
'setuptools_scm',
],
classifiers=[
'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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
entry_points={
'console_scripts': ['maraplus = maraplus.core:main']
},
)