Files
freezer-api/setup.cfg
Andreas Jaeger f5332fd0d1 Cleanup py27 support
This repo is now testing only with Python 3, so let's make
a few cleanups:
- Remove python 2.7 stanza from setup.py
- Add requires on python >= 3.6 to setup.cfg so that pypi and pip
  know about the requirement
- Remove obsolete sections from setup.cfg
- Update classifiers
- Update requirements, no need for python_version anymore
- Switch to using sphinx-build. Remove extra build step
  from docs build - api-ref is build separate.
- Cleanup doc/source/conf.py to remove now obsolete content.
- Use newer openstackdocstheme version
- Remove install_command from tox.ini, the default is fine

Change-Id: I7bb95a8ebd7023046baae30595159254bac25690
2020-04-13 16:41:33 +02:00

62 lines
1.9 KiB
INI

[metadata]
name = freezer-api
summary = OpenStack Backup and Restore API Service
description-file =
README.rst
author = OpenStack
author_email = openstack-discuss@lists.openstack.org
home-page = https://docs.openstack.org/freezer/latest/
python-requires = >=3.6
classifier =
Environment :: OpenStack
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Development Status :: 5 - Production/Stable
Natural Language :: English
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Intended Audience :: Telecommunications Industry
License :: OSI Approved :: Apache Software License
Operating System :: MacOS
Operating System :: POSIX :: BSD :: FreeBSD
Operating System :: POSIX :: BSD :: NetBSD
Operating System :: POSIX :: BSD :: OpenBSD
Operating System :: POSIX :: Linux
Operating System :: Unix
Topic :: System :: Archiving :: Backup
Topic :: System :: Archiving :: Compression
Topic :: System :: Archiving
[files]
packages =
freezer_api
[entry_points]
oslo.config.opts =
freezer-api = freezer_api.common.config:list_opts
oslo.policy.policies =
freezer-api = freezer_api.common.policies:list_rules
console_scripts =
freezer-api = freezer_api.cmd.api:main
freezer-manage = freezer_api.cmd.manage:main
freezer-manager-status = freezer_api.cmd.status:main
wsgi_scripts =
freezer-api-wsgi = freezer_api.service:initialize_app
freezer.db.backends =
sqlalchemy = freezer_api.db.sqlalchemy.driver:SQLDriver
elasticsearch = freezer_api.db.elasticsearch.driver:ElasticSearchDB
[pytests]
where=tests
verbosity=2