-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
54 lines (49 loc) · 1.66 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
from setuptools import setup
with open('README.md') as readme:
long_description = readme.read()
classifiers = [
'Framework :: Pytest',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Russian',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Quality Assurance',
]
install_requires = [
'allure-pytest',
'allure-python-commons',
'pytest<=8.2.1',
'attrs',
]
entry_points = {
'pytest11': [
'pytest_glamor_allure = pytest_glamor_allure.plugin',
],
}
if __name__ == '__main__':
setup(
name='pytest_glamor_allure',
description='Extends allure-pytest functionality',
long_description=long_description,
long_description_content_type='text/markdown',
author='Denis Alexeev',
author_email='[email protected]',
maintainer='Denis Alexeev',
maintainer_email='[email protected]',
url='https://github.com/Denis-Alexeev/pytest-glamor-allure',
packages=['pytest_glamor_allure', 'glamor'],
py_modules=['glamor', 'pytest_glamor_allure', 'pitest'],
classifiers=classifiers,
licence='MIT',
setup_requires=['setuptools_scm'],
install_requires=install_requires,
entry_points=entry_points,
python_requires='>=3.7',
)