Browse Source

reordering directories to separate src from tests

main
Julien Iguchi-Cartigny 10 years ago
parent
commit
09fcfca152
27 changed files with 2 additions and 10 deletions
  1. +1
    -8
      setup.py
  2. +0
    -0
      src/__init__.py
  3. +0
    -1
      src/wstools/tests/__init__.py
  4. +0
    -0
      tests/.cvsignore
  5. +0
    -0
      tests/README
  6. +0
    -0
      tests/config.txt
  7. +0
    -0
      tests/schema.tar.gz
  8. +0
    -0
      tests/test_t1.py
  9. +1
    -1
      tests/test_wsdl.py
  10. +0
    -0
      tests/test_wstools.py
  11. +0
    -0
      tests/test_wstools_net.py
  12. +0
    -0
      tests/xmethods.tar.gz
  13. +0
    -0
      tests/xmethods/ip2geo.wsdl
  14. +0
    -0
      tests/xmethods/zip2geo.wsdl
  15. +0
    -0
      wstools/.cvsignore
  16. +0
    -0
      wstools/MIMEAttachment.py
  17. +0
    -0
      wstools/Namespaces.py
  18. +0
    -0
      wstools/TimeoutSocket.py
  19. +0
    -0
      wstools/UserTuple.py
  20. +0
    -0
      wstools/Utility.py
  21. +0
    -0
      wstools/WSDLTools.py
  22. +0
    -0
      wstools/XMLSchema.py
  23. +0
    -0
      wstools/XMLname.py
  24. +0
    -0
      wstools/__init__.py
  25. +0
    -0
      wstools/c14n.py
  26. +0
    -0
      wstools/logging.py
  27. +0
    -0
      wstools/version.py

+ 1
- 8
setup.py View File

@@ -16,16 +16,12 @@ long_description = """WSDL parsing services package for Web Services for Python.
+ read('README.txt')\
+ read('CHANGES.txt')\

from src.wstools.version import __version__
from wstools.version import __version__

install_requires = [
'docutils'
]

test_requires = [
'nose'
]

setup(
name="wstools",
version=__version__,
@@ -35,8 +31,5 @@ setup(
url=url,
long_description=long_description,
packages=['wstools'],
package_dir={'': 'src'},
include_package_data=True,
install_requires=install_requires,
tests_require=test_requires,
)

+ 0
- 0
src/__init__.py View File


+ 0
- 1
src/wstools/tests/__init__.py View File

@@ -1 +0,0 @@
#! /usr/bin/env python

src/wstools/.cvsignore → tests/.cvsignore View File


src/wstools/tests/README → tests/README View File


src/wstools/tests/config.txt → tests/config.txt View File


src/wstools/tests/schema.tar.gz → tests/schema.tar.gz View File


src/wstools/tests/test_t1.py → tests/test_t1.py View File


src/wstools/tests/test_wsdl.py → tests/test_wsdl.py View File

@@ -70,7 +70,7 @@ class WSDLToolsTestCase(unittest.TestCase):
if self.path[:7] == 'http://':
self.wsdl = WSDLReader().loadFromURL(self.path)
else:
self.wsdl = WSDLReader().loadFromFile('src/wstools/tests/' + self.path)
self.wsdl = WSDLReader().loadFromFile('tests/' + self.path)

except TimeoutError:
print "connection timed out"

src/wstools/tests/test_wstools.py → tests/test_wstools.py View File


src/wstools/tests/test_wstools_net.py → tests/test_wstools_net.py View File


src/wstools/tests/xmethods.tar.gz → tests/xmethods.tar.gz View File


src/wstools/tests/xmethods/ip2geo.wsdl → tests/xmethods/ip2geo.wsdl View File


src/wstools/tests/xmethods/zip2geo.wsdl → tests/xmethods/zip2geo.wsdl View File


src/wstools/tests/.cvsignore → wstools/.cvsignore View File


src/wstools/MIMEAttachment.py → wstools/MIMEAttachment.py View File


src/wstools/Namespaces.py → wstools/Namespaces.py View File


src/wstools/TimeoutSocket.py → wstools/TimeoutSocket.py View File


src/wstools/UserTuple.py → wstools/UserTuple.py View File


src/wstools/Utility.py → wstools/Utility.py View File


src/wstools/WSDLTools.py → wstools/WSDLTools.py View File


src/wstools/XMLSchema.py → wstools/XMLSchema.py View File


src/wstools/XMLname.py → wstools/XMLname.py View File


src/wstools/__init__.py → wstools/__init__.py View File


src/wstools/c14n.py → wstools/c14n.py View File


src/wstools/logging.py → wstools/logging.py View File


src/wstools/version.py → wstools/version.py View File


Loading…
Cancel
Save