summaryrefslogtreecommitdiffstats
path: root/src/python/setup.py
blob: 84284f207fd8c232add4015e4b77a14be06da51b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
    name='openlmi',
    description='OpenLMI python providers',
    author='Michal Minar',
    author_email='miminar@redhat.com',
    url='https://fedorahosted.org/openlmi/',
    version='0.1',
    namespace_packages = ['openlmi'],
    packages = ['openlmi'],
    classifiers=[
        'license :: osi approved :: gnu general public license v2 or later (gplv2+)',
        'operating system :: posix :: linux',
        'topic :: system :: systems administration',
        ]
    )