second try
[vsorcdistro/.git] / ryu / .eggs / pbr-5.3.1-py2.7.egg / pbr / tests / testpackage / setup.cfg
1 [metadata]
2 name = pbr_testpackage
3 # TODO(lifeless) we should inject this as needed otherwise we're not truely
4 # testing postversioned codepaths.
5 version = 0.1.dev
6 author = OpenStack
7 author-email = openstack-discuss@lists.openstack.org
8 home-page = http://pypi.python.org/pypi/pbr
9 project_urls =
10     Bug Tracker = https://bugs.launchpad.net/pbr/
11     Documentation = https://docs.openstack.org/pbr/
12     Source Code = https://git.openstack.org/cgit/openstack-dev/pbr/
13 summary = Test package for testing pbr
14 description-file =
15     README.txt
16     CHANGES.txt
17 description-content-type = text/plain; charset=UTF-8
18 requires-python = >=2.5
19
20 requires-dist =
21     setuptools
22
23 classifier =
24     Development Status :: 3 - Alpha
25     Intended Audience :: Developers
26     License :: OSI Approved :: BSD License
27     Programming Language :: Python
28     Topic :: Scientific/Engineering
29     Topic :: Software Development :: Build Tools
30     Topic :: Software Development :: Libraries :: Python Modules
31     Topic :: System :: Archiving :: Packaging
32
33 keywords = packaging, distutils, setuptools
34
35 [files]
36 packages = pbr_testpackage
37 package-data = testpackage = package_data/*.txt
38 data-files = testpackage/data_files = data_files/*
39 extra-files = extra-file.txt
40
41 [entry_points]
42 console_scripts =
43     pbr_test_cmd = pbr_testpackage.cmd:main
44     pbr_test_cmd_with_class = pbr_testpackage.cmd:Foo.bar
45
46 wsgi_scripts =
47     pbr_test_wsgi = pbr_testpackage.wsgi:main
48     pbr_test_wsgi_with_class = pbr_testpackage.wsgi:WSGI.app
49
50 [extension=pbr_testpackage.testext]
51 sources = src/testext.c
52 optional = True
53
54 [global]
55 #setup-hooks =
56 #    pbr_testpackage._setup_hooks.test_hook_1
57 #    pbr_testpackage._setup_hooks.test_hook_2
58 commands = pbr_testpackage._setup_hooks.test_command