File: setup.py

package info (click to toggle)
python-nosehtmloutput 0.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 272 kB
  • ctags: 42
  • sloc: python: 510; makefile: 9
file content (27 lines) | stat: -rw-r--r-- 907 bytes parent folder | download | duplicates (2)
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
import htmloutput.version
import setuptools

setuptools.setup(
    name="nosehtmloutput",
    version=htmloutput.version.__version__,
    author='Hewlett-Packard Development Company, L.P.',
    description="Nose plugin to produce test results in html.",
    license="Apache License, Version 2.0",
    url="https://github.com/openstack-infra/nose-html-output",
    packages=["htmloutput"],
    install_requires=['nose'],
    classifiers=[
        "Environment :: Console",
        "Topic :: Software Development :: Testing",
        "Intended Audience :: Developers",
        "Intended Audience :: Information Technology",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
        "Programming Language :: Python"
    ],
    entry_points={
        'nose.plugins.0.10': [
            'html-output = htmloutput.htmloutput:HtmlOutput'
        ]
    }
)