#!/usr/bin/env python from setuptools import setup, find_packages try: long_description = open('README.md', 'rt').read() except IOError: long_description = '' setup( name='openlmi-scripts-account', version='@@VERSION@@', description='LMI command for system account administration.', long_description=long_description, author='Roman Rakus', author_email='rrakus@redhat.com', url='https://github.com/openlmi/openlmi-scripts', download_url='https://github.com/openlmi/openlmi-scripts/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-scripts'], namespace_packages=['lmi', 'lmi.scripts'], packages=['lmi', 'lmi.scripts', 'lmi.scripts.account'], include_package_data=True, entry_points={ 'lmi.scripts.cmd': [ 'user = lmi.scripts.account.user_cmd:User', 'group = lmi.scripts.account.group_cmd:Group', ], }, )