-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
41 lines (38 loc) · 1.46 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
from io import open
from setuptools import setup, find_packages
with open("README.rst", encoding="utf-8") as f:
readme = f.read()
setup(
name="pytest-reportlog",
entry_points={"pytest11": ["pytest_reportlog = pytest_reportlog.plugin"]},
packages=find_packages(where="src"),
package_dir={"": "src"},
platforms="any",
python_requires=">=3.7",
install_requires=["pytest"],
use_scm_version={"write_to": "src/pytest_reportlog/_version.py"},
setup_requires=["setuptools_scm"],
url="https://github.com/pytest-dev/pytest-reportlog",
license="MIT",
author="Bruno Oliveira",
author_email="[email protected]",
description="Replacement for the --resultlog option, focused in simplicity and extensibility",
long_description=readme,
long_description_content_type="text/x-rst",
keywords="pytest",
extras_require={"dev": ["pre-commit", "tox"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
],
)