diff --git a/setup.py b/setup.py index e1016e9..4d48edd 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ long_description = "SOAPpy-py3 provides tools for building SOAP clients and serv + '\n' + read('CHANGES.txt') setup( name="SOAPpy-py3", + provides=['SOAPpy'], version='0.52.23', # Add 0.40.0 for the SOAPpy-py3 port description="SOAP Services for Python", maintainer="Synerty", @@ -31,7 +32,19 @@ setup( package_dir={'': 'src'}, include_package_data=True, install_requires=[ - 'wstools', + 'wstools-py3', 'defusedxml', + ], + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Development Status :: 5 - Production/Stable', + 'Environment :: Other Environment', + 'Intended Audience :: Developers', + 'Operating System :: OS Independent', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Topic :: Internet :: WWW/HTTP', ] )