summaryrefslogtreecommitdiffstats
path: root/commands/locale/setup.py.skel
diff options
context:
space:
mode:
Diffstat (limited to 'commands/locale/setup.py.skel')
-rw-r--r--commands/locale/setup.py.skel46
1 files changed, 46 insertions, 0 deletions
diff --git a/commands/locale/setup.py.skel b/commands/locale/setup.py.skel
new file mode 100644
index 0000000..3dc5511
--- /dev/null
+++ b/commands/locale/setup.py.skel
@@ -0,0 +1,46 @@
+#!/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-locale',
+ version='@@VERSION@@',
+ description='LMI command for system locale administration.',
+ long_description=long_description,
+ author=u'Vitezslav Crhonek',
+ author_email='vcrhonek@redhat.com',
+ url='https://github.com/openlmi/openlmi-locale',
+ download_url='https://github.com/openlmi/openlmi-locale/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.locale'],
+ include_package_data=True,
+
+ entry_points={
+ 'lmi.scripts.cmd': [
+ # All subcommands of lmi command should go here.
+ # See http://pythonhosted.org/openlmi-scripts/script-development.html#writing-setup-py
+ 'locale = lmi.scripts.locale.cmd:Locale',
+ ],
+ },
+ )