forked from useblocks/sphinx-test-reports
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (39 loc) · 1.59 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
requires = ["sphinx>=4.0", "lxml", "sphinx-needs>=1.0.1"]
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as file:
setup(
name="sphinx-test-reports",
# Update also test_reports.py, conf.py and changelog!
version="1.0.2",
url="http://github.com/useblocks/sphinx-test-reports",
download_url="http://pypi.python.org/pypi/sphinx-test-reports",
license="MIT",
author="team useblocks",
author_email="info@useblocks.com",
description="Sphinx extension for showing test results and test environment "
"information inside sphinx documentations",
long_description=file.read(),
zip_safe=False,
classifiers=[
"Framework :: Sphinx",
"Framework :: Sphinx :: Extension",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation",
],
platforms="any",
packages=find_packages(),
include_package_data=True,
install_requires=requires,
namespace_packages=["sphinxcontrib"],
)