a3e7db9916
Create the base data abstraction layer into the DB in basic API service. I create a database table services as a example. This table is used to save the running status of deployed services. The command smaug-manage is used to manage the database. we can use this command 'smaug-manage db sync' to sync the smaug database up to the most recent version. smaug-manage version list: exposing the smaug codebase version. smaug-manage config list: exposing the configuration. smaug-manage service list: showing a list of all smaug services status. Change-Id: I2beeae0c0a7494a88bc4e4d143d36cee3f3f2a4e Closes-Bug: #1525794
61 lines
1.4 KiB
INI
61 lines
1.4 KiB
INI
[metadata]
|
|
name = smaug
|
|
version = 0.0.1
|
|
summary = Application Data Protection as a Service for OpenStack
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.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 :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.3
|
|
Programming Language :: Python :: 3.4
|
|
|
|
[files]
|
|
packages =
|
|
smaug
|
|
data_files =
|
|
/etc/smaug =
|
|
etc/api-paste.ini
|
|
etc/policy.json
|
|
etc/smaug.conf
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
smaug-api = smaug.cmd.api:main
|
|
smaug-manage = smaug.cmd.manage:main
|
|
|
|
smaug.database.migration_backend =
|
|
sqlalchemy = oslo_db.sqlalchemy.migration
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[compile_catalog]
|
|
directory = smaug/locale
|
|
domain = smaug
|
|
|
|
[update_catalog]
|
|
domain = smaug
|
|
output_dir = smaug/locale
|
|
input_file = smaug/locale/smaug.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = smaug/locale/smaug.pot
|