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) ...@@ -79,7 +79,7 @@ How to update you old Suse Image (Suse 12.1 or sooner)
------------------------------------------------------ ------------------------------------------------------
Run this whole command as root: 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 Check your config
......
...@@ -2,27 +2,30 @@ from setuptools import setup, find_packages ...@@ -2,27 +2,30 @@ from setuptools import setup, find_packages
import glob import glob
import os import os
version = '0.23' version = '1.0a1'
name = 'slapprepare' name = 'slapprepare'
long_description = open("README.txt").read() + "\n" + \
open("CHANGES.txt").read() + "\n"
setup(name=name, setup(name=name,
version=version, version=version,
description="SlapOS SetUP kit.", description="SlapOS Setup kit for dedicated SuSE machines.",
long_description=long_description,
classifiers=[ classifiers=[
"Programming Language :: Python", "Programming Language :: Python",
], ],
keywords='slapos Setup Kit', keywords='slapos Setup Kit',
license='GPLv3', license='GPLv3',
url='http://www.slapos.org',
author='VIFIB',
packages=['slapprepare'], packages=['slapprepare'],
include_package_data=True, include_package_data=True,
install_requires=['slapos.libnetworkcache',], install_requires=['slapos.libnetworkcache',],
zip_safe=False, # proxy depends on Flask, which has issues with zip_safe=False,
# accessing templates
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'slapprepare = slapprepare:slapprepare', 'slapprepare = slapprepare:slapprepare',
'slapupdate = slapprepare.slapupdate:main', '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