summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 6208476de083b6f1271d03bd143a3351ce4c57ff (plain)
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
[metadata]
name = testrepository
author = Robert Collins
author_email = robertc@robertcollins.net
home-page = https://launchpad.net/testrepository
summary = A repository of test results.
description-file = README.rst
classifiers =
    Development Status :: 6 - Mature
    Intended Audience :: Developers
    License :: OSI Approved :: BSD License
    License :: OSI Approved :: Apache Software License
    Operating System :: OS Independent
    Programming Language :: Python
    Programming Language :: Python :: 2
    Programming Language :: Python :: 3
    Topic :: Software Development :: Quality Assurance
    Topic :: Software Development :: Testing
keyword = subunit, unittest, testrunner

[extras]
test =
  pytz
  testresources
  testscenarios
docs =
  jinja2<2.7:python_version<"3.3" and python_version>="3"
  Pygments<2:python_version<"3.3" and python_version>="3"
  sphinx<1.3:python_version<"3.3" and python_version>="3"
  sphinx:python_version<"3" or python_version>="3.3"

[files]
scripts =

[entry_points]
distutils.commands =
    testr = testrepository.setuptools_command:Testr
console_scripts =
    testr = testrepository.commands:main