summaryrefslogtreecommitdiffstats
path: root/commands/networking/setup.py.skel
diff options
context:
space:
mode:
Diffstat (limited to 'commands/networking/setup.py.skel')
-rw-r--r--commands/networking/setup.py.skel44
1 files changed, 44 insertions, 0 deletions
diff --git a/commands/networking/setup.py.skel b/commands/networking/setup.py.skel
new file mode 100644
index 0000000..6dabfdd
--- /dev/null
+++ b/commands/networking/setup.py.skel
@@ -0,0 +1,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-networking',
+ version='@@VERSION@@',
+ description='LMI command for network administration.',
+ long_description=long_description,
+ author=u'Radek Novacek',
+ author_email='rnovacek@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 >= 0.2.7', 'IPy'],
+
+ namespace_packages=['lmi', 'lmi.scripts'],
+ packages=['lmi', 'lmi.scripts', 'lmi.scripts.networking'],
+ include_package_data=True,
+
+ entry_points={
+ 'lmi.scripts.cmd': [
+ 'net = lmi.scripts.networking.cmd:Networking',
+ ],
+ },
+ )