-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 1.32 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pytest-allure-dsl',
version_format='{tag}',
setup_requires=['setuptools-git-version'],
description='pytest plugin to test case doc string dls instructions',
author='Mikhail Trifonov',
author_email='[email protected]',
url='https://github.com/trifonovmixail/pytest-allure-dsl',
py_modules=['pytest_allure_dsl'],
install_requires=[
'wheel',
'pytest',
'allure-pytest>=2.8.18',
'PyYAML',
'future'
],
keywords='py.test pytest allure dsl',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
)