[svn r63539] moving py/doc to doc/ and removing some more files
--HG-- branch : trunk
This commit is contained in:
parent
5bc2bda8d1
commit
a72ab92ed6
14
MANIFEST
14
MANIFEST
|
@ -83,25 +83,30 @@ py/compat/testing/test_subprocess.py
|
|||
py/compat/testing/test_textwrap.py
|
||||
py/compat/textwrap.py
|
||||
py/conftest.py
|
||||
py/doc/Makefile
|
||||
py/doc/__init__.py
|
||||
py/doc/bin.txt
|
||||
py/doc/code.txt
|
||||
py/doc/coding-style.txt
|
||||
py/doc/conf.py
|
||||
py/doc/confrest.py
|
||||
py/doc/contact.txt
|
||||
py/doc/download.txt
|
||||
py/doc/draft_pyfs
|
||||
py/doc/execnet.txt
|
||||
py/doc/future.txt
|
||||
py/doc/img/pylib.png
|
||||
py/doc/impl-test.txt
|
||||
py/doc/index.txt
|
||||
py/doc/io.txt
|
||||
py/doc/links.txt
|
||||
py/doc/log.txt
|
||||
py/doc/make.bat
|
||||
py/doc/misc.txt
|
||||
py/doc/path.txt
|
||||
py/doc/release-0.9.0.txt
|
||||
py/doc/release-0.9.2.txt
|
||||
py/doc/release-1.0.0.txt
|
||||
py/doc/releases.txt
|
||||
py/doc/roles.py
|
||||
py/doc/style.css
|
||||
py/doc/test-config.txt
|
||||
py/doc/test-dist.txt
|
||||
|
@ -110,8 +115,8 @@ py/doc/test-ext.txt
|
|||
py/doc/test-features.txt
|
||||
py/doc/test-plugins.txt
|
||||
py/doc/test-quickstart.txt
|
||||
py/doc/test-statemanage.txt
|
||||
py/doc/test.txt
|
||||
py/doc/why_py.txt
|
||||
py/doc/xml.txt
|
||||
py/env.cmd
|
||||
py/env.py
|
||||
|
@ -300,12 +305,15 @@ py/test/plugin/pytest_default.py
|
|||
py/test/plugin/pytest_doctest.py
|
||||
py/test/plugin/pytest_eventlog.py
|
||||
py/test/plugin/pytest_execnetcleanup.py
|
||||
py/test/plugin/pytest_figleaf.py
|
||||
py/test/plugin/pytest_iocapture.py
|
||||
py/test/plugin/pytest_monkeypatch.py
|
||||
py/test/plugin/pytest_plugintester.py
|
||||
py/test/plugin/pytest_pocoo.py
|
||||
py/test/plugin/pytest_pylint.py
|
||||
py/test/plugin/pytest_pytester.py
|
||||
py/test/plugin/pytest_restdoc.py
|
||||
py/test/plugin/pytest_resultdb.py
|
||||
py/test/plugin/pytest_resultlog.py
|
||||
py/test/plugin/pytest_terminal.py
|
||||
py/test/plugin/pytest_tmpdir.py
|
||||
|
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
16
setup.py
16
setup.py
|
@ -1,7 +1,7 @@
|
|||
"""
|
||||
setup file for 'py' package based on:
|
||||
|
||||
https://codespeak.net/svn/py/trunk, revision=63342
|
||||
https://codespeak.net/svn/py/trunk, revision=63519
|
||||
|
||||
autogenerated by gensetup.py
|
||||
"""
|
||||
|
@ -32,7 +32,6 @@ http://pylib.org/contact.html
|
|||
|
||||
|
||||
"""
|
||||
CEXTENSION = False
|
||||
def main():
|
||||
setup(
|
||||
name='py',
|
||||
|
@ -45,10 +44,6 @@ def main():
|
|||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
||||
author_email='holger at merlinux.eu, py-dev at codespeak.net',
|
||||
ext_modules = CEXTENSION and
|
||||
[Extension("py.c-extension.greenlet.greenlet",
|
||||
["py/c-extension/greenlet/greenlet.c"]),]
|
||||
or [],
|
||||
|
||||
entry_points={'console_scripts': ['py.cleanup = py.cmdline:pycleanup',
|
||||
'py.countloc = py.cmdline:pycountloc',
|
||||
|
@ -137,23 +132,26 @@ def main():
|
|||
'compat/LICENSE',
|
||||
'compat/testing/test_doctest.txt',
|
||||
'compat/testing/test_doctest2.txt',
|
||||
'doc/Makefile',
|
||||
'doc/bin.txt',
|
||||
'doc/code.txt',
|
||||
'doc/coding-style.txt',
|
||||
'doc/contact.txt',
|
||||
'doc/download.txt',
|
||||
'doc/draft_pyfs',
|
||||
'doc/execnet.txt',
|
||||
'doc/future.txt',
|
||||
'doc/img/pylib.png',
|
||||
'doc/impl-test.txt',
|
||||
'doc/index.txt',
|
||||
'doc/io.txt',
|
||||
'doc/links.txt',
|
||||
'doc/log.txt',
|
||||
'doc/make.bat',
|
||||
'doc/misc.txt',
|
||||
'doc/path.txt',
|
||||
'doc/release-0.9.0.txt',
|
||||
'doc/release-0.9.2.txt',
|
||||
'doc/release-1.0.0.txt',
|
||||
'doc/releases.txt',
|
||||
'doc/style.css',
|
||||
'doc/test-config.txt',
|
||||
'doc/test-dist.txt',
|
||||
|
@ -162,8 +160,8 @@ def main():
|
|||
'doc/test-features.txt',
|
||||
'doc/test-plugins.txt',
|
||||
'doc/test-quickstart.txt',
|
||||
'doc/test-statemanage.txt',
|
||||
'doc/test.txt',
|
||||
'doc/why_py.txt',
|
||||
'doc/xml.txt',
|
||||
'env.cmd',
|
||||
'execnet/NOTES',
|
||||
|
|
Loading…
Reference in New Issue