1#!/usr/bin/python
2
3from setuptools import setup
4
5setup(
6    name = 'prometheus_client_model',
7    version = '0.0.1',
8    author = 'Matt T. Proud',
9    author_email = 'matt.proud@gmail.com',
10    description = 'Data model artifacts for the Prometheus client.',
11    license = 'Apache License 2.0',
12    url = 'http://github.com/prometheus/client_model',
13    packages = ['prometheus', 'prometheus/client', 'prometheus/client/model'],
14    package_dir = {'': 'python'},
15    requires = ['protobuf(==2.4.1)'],
16    platforms = 'Platform Independent',
17    classifiers = ['Development Status :: 3 - Alpha',
18                   'Intended Audience :: Developers',
19                   'Intended Audience :: System Administrators',
20                   'License :: OSI Approved :: Apache Software License',
21                   'Operating System :: OS Independent',
22                   'Topic :: Software Development :: Testing',
23                   'Topic :: System :: Monitoring'])
24