setup.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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-examples2',
  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.examples2',
  37. ],
  38. packages=find_packages(),
  39. include_package_data=True,
  40. entry_points={
  41. 'stevedore.example.formatter': [
  42. 'field = stevedore.example2.fields:FieldList',
  43. ],
  44. },
  45. zip_safe=False,
  46. )