some fixes and small doc updates, aiming to finalize 1.0.2
--HG-- branch : 1.0.x
This commit is contained in:
parent
c024dc6417
commit
3be875bfd2
|
@ -4,6 +4,7 @@ include setup.py
|
|||
include LICENSE
|
||||
include py/LICENSE
|
||||
include py/path/svn/testing/repotest.dump
|
||||
include py/rest/rest.sty.template
|
||||
exclude *.orig
|
||||
exclude *.rej
|
||||
prune .svn
|
||||
|
|
12
README.txt
12
README.txt
|
@ -6,14 +6,4 @@ the following tools and modules:
|
|||
* py.code: dynamic code generation and introspection
|
||||
* py.path: uniform local and svn path objects
|
||||
|
||||
It includes code and contributions from several people,
|
||||
listed in the LICENSE file.
|
||||
|
||||
For questions, please see py/doc/index.txt, refer to the website
|
||||
http://pylib.org or come to the #pylib IRC freenode channel or subscribe to
|
||||
http://codespeak.net/mailman/listinfo/py-dev .
|
||||
|
||||
have fun,
|
||||
|
||||
holger krekel, holger at merlinux eu
|
||||
|
||||
For questions and more information please visit http://pylib.org
|
||||
|
|
|
@ -255,9 +255,7 @@ of platform-dependencies as much as possible).
|
|||
|
||||
There is some experimental small approach
|
||||
(:source:`py/path/gateway/`) aiming at having
|
||||
a convenient Remote Path implementation
|
||||
and some considerations about future
|
||||
works in the according :source:`py/path/gateway/TODO.txt`
|
||||
a convenient Remote Path implementation.
|
||||
|
||||
There are various hacks out there to have
|
||||
Memory-Filesystems and even path objects
|
||||
|
|
|
@ -20,7 +20,7 @@ For questions please check out http://pylib.org/contact.html
|
|||
from initpkg import initpkg
|
||||
trunk = None
|
||||
|
||||
version = trunk or "1.0.2b1"
|
||||
version = trunk or "1.0.2"
|
||||
|
||||
initpkg(__name__,
|
||||
description = "py.test and pylib: advanced testing tool and networking lib",
|
||||
|
|
|
@ -31,7 +31,7 @@ def convert_rest_html(source, source_path, stylesheet=None, encoding='latin1'):
|
|||
source_path = os.path.abspath(str(source_path))
|
||||
prevdir = os.getcwd()
|
||||
try:
|
||||
os.chdir(os.path.dirname(source_path))
|
||||
#os.chdir(os.path.dirname(source_path))
|
||||
return publish_string(source, source_path, writer_name='html',
|
||||
settings_overrides=kwargs)
|
||||
finally:
|
||||
|
|
2
setup.py
2
setup.py
|
@ -31,7 +31,7 @@ def main():
|
|||
name='py',
|
||||
description='py.test and pylib: advanced testing tool and networking lib',
|
||||
long_description = long_description,
|
||||
version= trunk or '1.0.2b1',
|
||||
version= trunk or '1.0.2',
|
||||
url='http://pylib.org',
|
||||
license='MIT license',
|
||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||
|
|
Loading…
Reference in New Issue