Dump the play part from katacoda scenatio too
[functest-xtesting.git] / setup.cfg
1 [metadata]
2 name = xtesting
3 summary = OPNFV reference testing framework
4 description_file =
5     README.rst
6 author = OPNFV
7 author_email = opnfv-tech-discuss@lists.opnfv.org
8 home_page = https://wiki.opnfv.org/display/functest
9 classifiers =
10     Intended Audience :: Information Technology
11     Intended Audience :: System Administrators
12     License :: OSI Approved :: Apache Software License
13     Operating System :: POSIX :: Linux
14     Programming Language :: Python
15     Programming Language :: Python :: 3
16     Programming Language :: Python :: 3.8
17
18 [files]
19 packages = xtesting
20
21 [entry_points]
22 console_scripts =
23     run_tests = xtesting.ci.run_tests:main
24     zip_campaign = xtesting.core.campaign:main
25 xtesting.testcase =
26     bashfeature = xtesting.core.feature:BashFeature
27     robotframework = xtesting.core.robotframework:RobotFramework
28     behaveframework = xtesting.core.behaveframework:BehaveFramework
29     unit = xtesting.core.unit:Suite
30     first = xtesting.samples.first:Test
31     second = xtesting.samples.second:Test
32     ansible = xtesting.core.ansible:Ansible
33     pytest = xtesting.core.pytest:Pytest
34
35 [build_sphinx]
36 all_files = 1
37 build-dir = api/build/
38 source-dir = api
39
40 [wheel]
41 universal = 1