summaryrefslogtreecommitdiffstats
path: root/src/software/setup.py
blob: bede36fede59c43b5f02aa4e857cc50f0808eb2d (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
setup(
    name='openlmi-software',
    description='Software Management providers',
    author='Michal Minar',
    author_email='miminar@redhat.com',
    url='https://fedorahosted.org/openlmi/',
    version='0.9',
    namespace_packages=['openlmi'],
    packages=[
        'openlmi.software',
        'openlmi.software.core',
        'openlmi.software.util',
        'openlmi.software.yumdb'],
    install_requires=['openlmi'],
    license="LGPLv2+",
    classifiers=[
        'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
        'Operating System :: POSIX :: Linux',
        'Topic :: System :: Systems Administration',
        ]
    )