97b8775301
This commit removes any occurrence of the library six. Six is used to aid in writing code that is compatible with both Python 2 and Python 3. Craton no longer supports the use of Python 2.x, and so six is no longer required. The minimum version of Python supported is 3.5, the classifiers are updated accordingly in setup.cfg. The docs have been updated to specify 3.5 as the minimum version. Tox no longer attempts to test against Python 3.4. This change also removes .travis.yml because it is left over from from before the project was moved to the OpenStack project namespace and is no longer required. Closes-bug: #1630003 Change-Id: I63cba2b6f21a507c0ff02edbef24b663af400c12
54 lines
1.3 KiB
INI
54 lines
1.3 KiB
INI
[metadata]
|
|
name = craton
|
|
summary = Platform for fleet management for OpenStack.
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://craton.readthedocs.org
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3.5
|
|
|
|
[files]
|
|
packages =
|
|
craton
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
craton-api = craton.cmd.api:main
|
|
craton-worker = craton.cmd.worker:main
|
|
craton-dbsync = craton.cmd.dbsync:main
|
|
|
|
craton.workflow =
|
|
testflow = craton.workflow.testflow:TestFlow
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[compile_catalog]
|
|
directory = craton/locale
|
|
domain = craton
|
|
|
|
[update_catalog]
|
|
domain = craton
|
|
output_dir = craton/locale
|
|
input_file = craton/locale/craton.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = craton/locale/craton.pot
|