setup.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Copyright (C) 2020 Red Hat, Inc.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  12. # implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. from setuptools import find_packages
  16. from setuptools import setup
  17. setup(
  18. name='stevedore-examples',
  19. version='1.0',
  20. description='Demonstration package for stevedore',
  21. author='Doug Hellmann',
  22. author_email='doug@doughellmann.com',
  23. url='http://opendev.org/openstack/stevedore',
  24. classifiers=['Development Status :: 3 - Alpha',
  25. 'License :: OSI Approved :: Apache Software License',
  26. 'Programming Language :: Python',
  27. 'Programming Language :: Python :: 2',
  28. 'Programming Language :: Python :: 2.7',
  29. 'Programming Language :: Python :: 3',
  30. 'Programming Language :: Python :: 3.5',
  31. 'Intended Audience :: Developers',
  32. 'Environment :: Console',
  33. ],
  34. platforms=['Any'],
  35. scripts=[],
  36. provides=['stevedore.examples',
  37. ],
  38. packages=find_packages(),
  39. include_package_data=True,
  40. entry_points={
  41. 'stevedore.example.formatter': [
  42. 'simple = stevedore.example.simple:Simple',
  43. 'plain = stevedore.example.simple:Simple',
  44. ],
  45. },
  46. zip_safe=False,
  47. )