# # Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between # you and Univention and not subject to the GNU AGPL V3. # # In the case you use this program under the terms of the GNU AGPL V3, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public # License with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # <https://www.gnu.org/licenses/>. # from packaging import setup setup( name='univention-appcenter-dev', packages=[ 'univention.appcenter.actions', ], package_dir={ 'univention.appcenter.actions': 'python/appcenter-dev/actions', }, )
# Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between # you and Univention and not subject to the GNU AGPL V3. # # In the case you use this program under the terms of the GNU AGPL V3, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public # License with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # <http://www.gnu.org/licenses/>. # from packaging import setup setup( name='univention-appcenter', description= 'Library for Univention App Center', # name != binary package name, therefore we need to do it manually... packages=[ 'univention.appcenter', 'univention.appcenter.actions', ], package_dir={'univention.appcenter': 'python/appcenter'}, )
except (IOError, OSError): __description__ = \ 'A pythonic interface to Wordpress using the Wordpress XML-RPC API' setup( name='pywordpress', version=__version__, license='MIT', description=__description__.split('\n')[0], long_description=__description__, author='Rufus Pollock', url='http://github.com/rufuspollock/pywordpress/', keywords='wordpress python', py_modules=['pywordpress'], zip_safe=False, test_suite='test_pywordpress', classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Topic :: Software Development :: Libraries :: Python Modules' ], )
__description__ = fo.read() fo.close() except (IOError, OSError): __description__ = \ 'A pythonic interface to Wordpress using the Wordpress XML-RPC API' setup( name='pywordpress', version=__version__, license='MIT', description=__description__.split('\n')[0], long_description=__description__, author='Rufus Pollock', url='http://github.com/rufuspollock/pywordpress/', keywords='wordpress python', py_modules=['pywordpress'], zip_safe=False, test_suite='test_pywordpress', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Topic :: Software Development :: Libraries :: Python Modules' ], )
# # Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between # you and Univention and not subject to the GNU AGPL V3. # # In the case you use this program under the terms of the GNU AGPL V3, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public # License with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # <http://www.gnu.org/licenses/>. # from packaging import setup setup( name='univention-management-console-module-appcenter', packages=[ 'univention.appcenter.actions', ], package_dir={ 'univention.appcenter.actions': 'python/appcenter-umc/actions', }, )
__description__ = fo.read() fo.close() except (IOError, OSError): __description__ = "A pythonic interface to Wordpress using the Wordpress XML-RPC API" setup( name="pywordpress", version=__version__, license="MIT", description=__description__.split("\n")[0], long_description=__description__, author="Rufus Pollock", url="http://bitbucket.org/rgrp/pywordpress/", keywords="wordpress python", py_modules=["pywordpress"], zip_safe=False, test_suite="test_pywordpress", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Topic :: Software Development :: Libraries :: Python Modules", ], )