Release slapprepare on pypi

parent 43f91454
Changes
=======
1.0a1 (2012-10-30)
------------------
* Initial release on Pypi.
\ No newline at end of file
......@@ -79,7 +79,7 @@ How to update you old Suse Image (Suse 12.1 or sooner)
------------------------------------------------------
Run this whole command as root:
# wget http://www.nexedi.org/static/packages/source/slapprepare/slapprepare.tar.gz; zypper remove -y slapos.node; rm -f /etc/opt/slapos/slapos.node*.rpm; tar -xzf slapprepare.tar.gz; cd slapprepare; python setup.py install; cd .. ; rm -r slapprepare* ; slapprepare -u ;
# wget zypper remove -y slapos.node; rm -f /etc/opt/slapos/slapos.node*.rpm; easy_install slapparepare && slapprepare -u ;
Check your config
......
......@@ -2,27 +2,30 @@ from setuptools import setup, find_packages
import glob
import os
version = '0.23'
version = '1.0a1'
name = 'slapprepare'
long_description = open("README.txt").read() + "\n" + \
open("CHANGES.txt").read() + "\n"
setup(name=name,
version=version,
description="SlapOS SetUP kit.",
description="SlapOS Setup kit for dedicated SuSE machines.",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
],
],
keywords='slapos Setup Kit',
license='GPLv3',
url='http://www.slapos.org',
author='VIFIB',
packages=['slapprepare'],
include_package_data=True,
install_requires=['slapos.libnetworkcache',],
zip_safe=False, # proxy depends on Flask, which has issues with
# accessing templates
install_requires=['slapos.libnetworkcache',],
zip_safe=False,
entry_points={
'console_scripts': [
'slapprepare = slapprepare:slapprepare',
'slapupdate = slapprepare.slapupdate:main',
]
},
)
'console_scripts': [
'slapprepare = slapprepare:slapprepare',
'slapupdate = slapprepare.slapupdate:main',
]
},
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment