-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
39 lines (38 loc) · 1.27 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
from setuptools import setup
setup(
name='pytest-odoo',
description='py.test plugin to run Odoo tests',
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
use_scm_version=True,
url='https://github.com/camptocamp/pytest-odoo',
license='AGPLv3',
author='Guewen Baconnier',
author_email='guewen.baconnier@camptocamp.com',
py_modules=['pytest_odoo'],
entry_points={'pytest11': ['odoo = pytest_odoo']},
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
"pytest>=8"
],
setup_requires=[
'setuptools_scm',
],
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'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',
]
)