forked from camptocamp/pytest-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.07 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
from setuptools import setup
setup(
name='pytest-odoo',
description='py.test plugin to run Odoo tests',
long_description=open("README.rst").read(),
use_scm_version=True,
url='https://github.com/camptocamp/pytest-odoo',
license='AGPLv3',
author='Guewen Baconnier',
author_email='[email protected]',
py_modules=['pytest_odoo'],
extras_require={
'autodiscover': ['odoo_autodiscover>=2'],
},
entry_points={'pytest11': ['odoo = pytest_odoo']},
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'pytest>=2.9',
],
setup_requires=[
'setuptools_scm',
],
classifiers=[
'Development Status :: 4 - Beta',
'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 :: 2.7',
]
)