setup.cfg 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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://opendev.org/openstack/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. python_requires = >=2.5
  19. requires_dist =
  20. setuptools
  21. classifier =
  22. Development Status :: 3 - Alpha
  23. Intended Audience :: Developers
  24. License :: OSI Approved :: BSD License
  25. Programming Language :: Python
  26. Topic :: Scientific/Engineering
  27. Topic :: Software Development :: Build Tools
  28. Topic :: Software Development :: Libraries :: Python Modules
  29. Topic :: System :: Archiving :: Packaging
  30. keywords = packaging, distutils, setuptools
  31. [files]
  32. packages = pbr_testpackage
  33. package_data = testpackage = package_data/*.txt
  34. data_files = testpackage/data_files = data_files/*
  35. extra_files = extra-file.txt
  36. [entry_points]
  37. console_scripts =
  38. pbr_test_cmd = pbr_testpackage.cmd:main
  39. pbr_test_cmd_with_class = pbr_testpackage.cmd:Foo.bar
  40. wsgi_scripts =
  41. pbr_test_wsgi = pbr_testpackage.wsgi:main
  42. pbr_test_wsgi_with_class = pbr_testpackage.wsgi:WSGI.app
  43. [extension=pbr_testpackage.testext]
  44. sources = src/testext.c
  45. optional = True
  46. [global]
  47. #setup_hooks =
  48. # pbr_testpackage._setup_hooks.test_hook_1
  49. # pbr_testpackage._setup_hooks.test_hook_2
  50. commands = pbr_testpackage._setup_hooks.test_command