summaryrefslogtreecommitdiffstats
path: root/commands/sssd/setup.py.skel
diff options
context:
space:
mode:
Diffstat (limited to 'commands/sssd/setup.py.skel')
-rw-r--r--commands/sssd/setup.py.skel43
1 files changed, 43 insertions, 0 deletions
diff --git a/commands/sssd/setup.py.skel b/commands/sssd/setup.py.skel
new file mode 100644
index 0000000..7299b4b
--- /dev/null
+++ b/commands/sssd/setup.py.skel
@@ -0,0 +1,43 @@
+#!/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-sssd',
+ version='@@VERSION@@',
+ description='LMI command for SSSD management.',
+ long_description=long_description,
+ author='Pavel Brezina',
+ author_email='pbrezina@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-tools >= 0.9.1'],
+
+ namespace_packages=['lmi', 'lmi.scripts'],
+ packages=['lmi', 'lmi.scripts', 'lmi.scripts.sssd'],
+ include_package_data=True,
+
+ entry_points={
+ 'lmi.scripts.cmd': [
+ 'sssd = lmi.scripts.sssd.sssd_cmd:SSSD',
+ ],
+ },
+ )