summaryrefslogtreecommitdiffstats
path: root/src/pcp/setup.py
blob: 899589256002a3db6dee00f56dab338e5ecaa71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
from lmi.pcp import __version__

setup(
    name='openlmi-pcp',
    description='PCP metric providers',
    author='Frank Ch. Eigler',
    author_email='fche@redhat.com',
    url='https://fedorahosted.org/openlmi/',
    version=__version__,
    namespace_packages=['lmi'],
    packages=[
        'lmi',
        'lmi.pcp'],
    install_requires=['openlmi', 'pcp'],
    license="LGPLv2+",
    classifiers=[
        'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
        'Operating System :: POSIX :: Linux',
        'Topic :: System :: Systems Administration',
        ]
    )