forked from openstack-archive/gnocchi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
146 lines (133 loc) · 3.89 KB
/
setup.cfg
File metadata and controls
146 lines (133 loc) · 3.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[metadata]
name = gnocchi
url = http://launchpad.net/gnocchi
summary = Metric as a Service
description-file =
README.rst
author = OpenStack
author-email = openstack-dev@lists.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.4
Topic :: System :: Monitoring
[extras]
keystone =
keystonemiddleware>=4.0.0
mysql =
pymysql
oslo.db>=1.8.0
sqlalchemy
sqlalchemy-utils
alembic>=0.7.6,!=0.8.1
postgresql =
psycopg2
oslo.db>=1.8.0
sqlalchemy
sqlalchemy-utils
alembic>=0.7.6,!=0.8.1
influxdb =
influxdb>=2.4
swift =
python-swiftclient>=2.5.0
msgpack-python
tooz>=1.22
ceph =
msgpack-python
tooz>=1.22
file =
msgpack-python
tooz>=1.22
doc =
oslosphinx>=2.2.0
sphinx
sphinxcontrib-httpdomain
PyYAML
Jinja2
test =
overtest>=0.8.0
gabbi>=0.101.2
coverage>=3.6
fixtures
mock
oslotest
python-subunit>=0.0.18
tempest-lib>=0.2.0
testrepository
testscenarios
testtools>=0.9.38
WebTest>=2.0.16
doc8
sysv_ipc
tooz>=1.22
keystonemiddleware>=4.0.0
[global]
setup-hooks =
pbr.hooks.setup_hook
[sdist]
pre-hook.build_config = gnocchi.genconfig.sdist_prehook
[files]
packages =
gnocchi
data_files =
etc/gnocchi = etc/gnocchi/*
[entry_points]
gnocchi.indexer.resources =
generic = gnocchi.indexer.sqlalchemy_base:Resource
instance = gnocchi.indexer.sqlalchemy_extension:Instance
instance_disk = gnocchi.indexer.sqlalchemy_extension:InstanceDisk
instance_network_interface = gnocchi.indexer.sqlalchemy_extension:InstanceNetworkInterface
swift_account = gnocchi.indexer.sqlalchemy_base:ResourceExt
volume = gnocchi.indexer.sqlalchemy_extension:Volume
ceph_account = gnocchi.indexer.sqlalchemy_base:ResourceExt
network = gnocchi.indexer.sqlalchemy_base:ResourceExt
identity = gnocchi.indexer.sqlalchemy_base:ResourceExt
ipmi = gnocchi.indexer.sqlalchemy_base:ResourceExt
stack = gnocchi.indexer.sqlalchemy_base:ResourceExt
image = gnocchi.indexer.sqlalchemy_extension:Image
gnocchi.controller.schemas =
generic = gnocchi.rest:GenericSchema
instance = gnocchi.rest:InstanceSchema
instance_disk = gnocchi.rest:InstanceDiskSchema
instance_network_interface = gnocchi.rest:InstanceNetworkInterfaceSchema
swift_account = gnocchi.rest:GenericSchema
volume = gnocchi.rest:VolumeSchema
ceph_account = gnocchi.rest:GenericSchema
network = gnocchi.rest:GenericSchema
identity = gnocchi.rest:GenericSchema
ipmi = gnocchi.rest:GenericSchema
stack = gnocchi.rest:GenericSchema
image = gnocchi.rest:ImageSchema
gnocchi.storage =
null = gnocchi.storage.null:NullStorage
swift = gnocchi.storage.swift:SwiftStorage
ceph = gnocchi.storage.ceph:CephStorage
file = gnocchi.storage.file:FileStorage
influxdb = gnocchi.storage.influxdb:InfluxDBStorage
gnocchi.indexer =
null = gnocchi.indexer.null:NullIndexer
mysql = gnocchi.indexer.sqlalchemy:SQLAlchemyIndexer
mysql+pymysql = gnocchi.indexer.sqlalchemy:SQLAlchemyIndexer
postgresql = gnocchi.indexer.sqlalchemy:SQLAlchemyIndexer
gnocchi.aggregates =
moving-average = gnocchi.aggregates.moving_stats:MovingAverage
console_scripts =
gnocchi-api = gnocchi.cli:api
gnocchi-upgrade = gnocchi.cli:upgrade
gnocchi-statsd = gnocchi.cli:statsd
gnocchi-metricd = gnocchi.cli:metricd
carbonara-dump = gnocchi.carbonara:dump_archive_file
oslo.config.opts =
gnocchi = gnocchi.opts:list_opts
[build_sphinx]
all_files = 1
build-dir = doc/build
source-dir = doc/source
[wheel]
universal = 1