Merge branch 'python-3.0-to-3.2' into python-2.4-to-2.7

This commit is contained in:
rocky
2024-05-30 04:52:22 -04:00
8 changed files with 608 additions and 216 deletions

View File

@@ -28,17 +28,17 @@ if not ((2, 4) <= SYS_VERSION <= (2, 7)):
raise Exception(mess)
from __pkginfo__ import (
__version__,
author,
author_email,
classifiers,
entry_points,
install_requires,
license,
long_description,
classifiers,
entry_points,
modname,
py_modules,
short_desc,
__version__,
web,
zip_safe,
)
@@ -58,7 +58,6 @@ setuptools.setup(
py_modules=py_modules,
test_suite="nose.collector",
url=web,
tests_require=["nose>=1.0"],
version=__version__,
zip_safe=zip_safe,
)