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 LICENSE
|
||||||
include py/LICENSE
|
include py/LICENSE
|
||||||
include py/path/svn/testing/repotest.dump
|
include py/path/svn/testing/repotest.dump
|
||||||
|
include py/rest/rest.sty.template
|
||||||
exclude *.orig
|
exclude *.orig
|
||||||
exclude *.rej
|
exclude *.rej
|
||||||
prune .svn
|
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.code: dynamic code generation and introspection
|
||||||
* py.path: uniform local and svn path objects
|
* py.path: uniform local and svn path objects
|
||||||
|
|
||||||
It includes code and contributions from several people,
|
For questions and more information please visit http://pylib.org
|
||||||
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
|
|
||||||
|
|
||||||
|
|
|
@ -255,9 +255,7 @@ of platform-dependencies as much as possible).
|
||||||
|
|
||||||
There is some experimental small approach
|
There is some experimental small approach
|
||||||
(:source:`py/path/gateway/`) aiming at having
|
(:source:`py/path/gateway/`) aiming at having
|
||||||
a convenient Remote Path implementation
|
a convenient Remote Path implementation.
|
||||||
and some considerations about future
|
|
||||||
works in the according :source:`py/path/gateway/TODO.txt`
|
|
||||||
|
|
||||||
There are various hacks out there to have
|
There are various hacks out there to have
|
||||||
Memory-Filesystems and even path objects
|
Memory-Filesystems and even path objects
|
||||||
|
|
|
@ -20,7 +20,7 @@ For questions please check out http://pylib.org/contact.html
|
||||||
from initpkg import initpkg
|
from initpkg import initpkg
|
||||||
trunk = None
|
trunk = None
|
||||||
|
|
||||||
version = trunk or "1.0.2b1"
|
version = trunk or "1.0.2"
|
||||||
|
|
||||||
initpkg(__name__,
|
initpkg(__name__,
|
||||||
description = "py.test and pylib: advanced testing tool and networking lib",
|
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))
|
source_path = os.path.abspath(str(source_path))
|
||||||
prevdir = os.getcwd()
|
prevdir = os.getcwd()
|
||||||
try:
|
try:
|
||||||
os.chdir(os.path.dirname(source_path))
|
#os.chdir(os.path.dirname(source_path))
|
||||||
return publish_string(source, source_path, writer_name='html',
|
return publish_string(source, source_path, writer_name='html',
|
||||||
settings_overrides=kwargs)
|
settings_overrides=kwargs)
|
||||||
finally:
|
finally:
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -31,7 +31,7 @@ def main():
|
||||||
name='py',
|
name='py',
|
||||||
description='py.test and pylib: advanced testing tool and networking lib',
|
description='py.test and pylib: advanced testing tool and networking lib',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version= trunk or '1.0.2b1',
|
version= trunk or '1.0.2',
|
||||||
url='http://pylib.org',
|
url='http://pylib.org',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
|
|
Loading…
Reference in New Issue