[svn r63241] regen setup, fix gensetup script
--HG-- branch : trunk
This commit is contained in:
parent
d1016d7800
commit
d203d47b4d
1
MANIFEST
1
MANIFEST
|
@ -204,7 +204,6 @@ py/misc/buildcmodule.py
|
||||||
py/misc/cache.py
|
py/misc/cache.py
|
||||||
py/misc/cmdline/__init__.py
|
py/misc/cmdline/__init__.py
|
||||||
py/misc/cmdline/countloc.py
|
py/misc/cmdline/countloc.py
|
||||||
py/misc/conftest-socketgatewayrun.py
|
|
||||||
py/misc/difftime.py
|
py/misc/difftime.py
|
||||||
py/misc/dynpkg.py
|
py/misc/dynpkg.py
|
||||||
py/misc/error.py
|
py/misc/error.py
|
||||||
|
|
|
@ -23,12 +23,12 @@ http://pylib.org/contact.html
|
||||||
"""
|
"""
|
||||||
from initpkg import initpkg
|
from initpkg import initpkg
|
||||||
|
|
||||||
version = "1.0.0a5"
|
version = "1.0.0a6"
|
||||||
|
|
||||||
initpkg(__name__,
|
initpkg(__name__,
|
||||||
description = "pylib and py.test: agile development and test support library",
|
description = "pylib and py.test: agile development and test support library",
|
||||||
revision = int('$LastChangedRevision: 63238 $'.split(':')[1][:-1]),
|
revision = int('$LastChangedRevision: 63241 $'.split(':')[1][:-1]),
|
||||||
lastchangedate = '$LastChangedDate: 2009-03-23 16:30:32 +0100 (Mon, 23 Mar 2009) $',
|
lastchangedate = '$LastChangedDate: 2009-03-23 17:03:10 +0100 (Mon, 23 Mar 2009) $',
|
||||||
version = version,
|
version = version,
|
||||||
url = "http://pylib.org",
|
url = "http://pylib.org",
|
||||||
download_url = "http://codespeak.net/py/%s/download.html" % version,
|
download_url = "http://codespeak.net/py/%s/download.html" % version,
|
||||||
|
|
18
setup.py
18
setup.py
|
@ -1,7 +1,7 @@
|
||||||
"""
|
"""
|
||||||
setup file for 'py' package based on:
|
setup file for 'py' package based on:
|
||||||
|
|
||||||
https://codespeak.net/svn/py/trunk, revision=63237
|
https://codespeak.net/svn/py/trunk, revision=63240
|
||||||
|
|
||||||
autogenerated by gensetup.py
|
autogenerated by gensetup.py
|
||||||
"""
|
"""
|
||||||
|
@ -39,9 +39,9 @@ def main():
|
||||||
name='py',
|
name='py',
|
||||||
description='pylib and py.test: agile development and test support library',
|
description='pylib and py.test: agile development and test support library',
|
||||||
long_description = long_description,
|
long_description = long_description,
|
||||||
version='1.0.0a5',
|
version='1.0.0a6',
|
||||||
url='http://pylib.org',
|
url='http://pylib.org',
|
||||||
download_url='http://codespeak.net/py/1.0.0a5/download.html',
|
download_url='http://codespeak.net/py/1.0.0a6/download.html',
|
||||||
license='MIT license',
|
license='MIT license',
|
||||||
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
||||||
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
author='holger krekel, Guido Wesdorp, Carl Friedrich Bolz, Armin Rigo, Maciej Fijalkowski & others',
|
||||||
|
@ -67,7 +67,8 @@ def main():
|
||||||
'Topic :: System :: Distributed Computing',
|
'Topic :: System :: Distributed Computing',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
'Programming Language :: Python'],
|
'Programming Language :: Python'],
|
||||||
packages=['py.builtin',
|
packages=['py',
|
||||||
|
'py.builtin',
|
||||||
'py.builtin.testing',
|
'py.builtin.testing',
|
||||||
'py.c-extension',
|
'py.c-extension',
|
||||||
'py.cmdline',
|
'py.cmdline',
|
||||||
|
@ -115,14 +116,7 @@ def main():
|
||||||
'py.tool.testing',
|
'py.tool.testing',
|
||||||
'py.xmlobj',
|
'py.xmlobj',
|
||||||
'py.xmlobj.testing'],
|
'py.xmlobj.testing'],
|
||||||
package_data={'py': ['',
|
package_data={'py': ['LICENSE',
|
||||||
'',
|
|
||||||
'',
|
|
||||||
'',
|
|
||||||
'',
|
|
||||||
'',
|
|
||||||
'',
|
|
||||||
'LICENSE',
|
|
||||||
'bin/_findpy.py',
|
'bin/_findpy.py',
|
||||||
'bin/_genscripts.py',
|
'bin/_genscripts.py',
|
||||||
'bin/gendoc.py',
|
'bin/gendoc.py',
|
||||||
|
|
Loading…
Reference in New Issue