summaryrefslogtreecommitdiffstats
path: root/commands/system/setup.py.skel
blob: 164b32ed56e18219c6a58e1e02d0214f80d97dee (plain)
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from setuptools import setup

try:
    long_description = open('README.md', 'rt').read()
except IOError:
    long_description = ''

setup(
    name='openlmi-scripts-system',
    version='@@VERSION@@',
    description='Display general system information',
    long_description=long_description,
    author=u'Peter Schiffer',
    author_email='pschiffe@redhat.com',
    url='https://github.com/openlmi/openlmi-system',
    download_url='https://github.com/openlmi/openlmi-system/tarball/master',
    platforms=['Any'],
    license="BSD",
    classifiers=[
        'License :: OSI Approved :: BSD License',
        'Operating System :: POSIX :: Linux',
        'Topic :: System :: Systems Administration',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Intended Audience :: Developers',
        'Environment :: Console',
    ],

    install_requires=['openlmi-tools >= 0.9.1', 'openlmi-scripts-service'],

    namespace_packages=['lmi', 'lmi.scripts'],
    packages=['lmi', 'lmi.scripts', 'lmi.scripts.system'],
    include_package_data=True,

    entry_points={
        'lmi.scripts.cmd': [
            'system = lmi.scripts.system.cmd:System',
            ],
        },
    )