forked from allure-framework/allure-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 706 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 706 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
PACKAGE = "pytest-allure-adaptor"
VERSION = "1.3.8"
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=PACKAGE,
version=VERSION,
description=("Plugin for py.test to generate allure xml reports"),
author="pupssman",
author_email="pupssman@yandex-team.ru",
packages=["allure", "allure.contrib"],
url="https://github.com/allure-framework/allure-python",
long_description=read('README.rst'),
entry_points={'pytest11': ['allure_adaptor = allure.pytest_plugin']},
install_requires=[
"lxml>=3.2.0",
"pytest>=2.4.1"]
)