├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc ├── Makefile ├── changelog.rst ├── commandline.rst ├── conf.py ├── find_modules.rst ├── index.rst ├── license.rst ├── modulegraph.rst ├── util.rst └── zipio.rst ├── modulegraph ├── __init__.py ├── __main__.py ├── _imp.py ├── find_modules.py ├── modulegraph.py ├── util.py └── zipio.py ├── modulegraph_test └── testdata │ └── nspkg │ ├── setuptools-28.1.0 │ ├── child │ │ ├── namedpkg │ │ │ └── slave.py │ │ ├── nameduser-1.5-py2.7-nspkg.pth │ │ └── nameduser-1.5-py2.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── namespace_packages.txt │ │ │ └── top_level.txt │ └── parent │ │ ├── namedpkg-1.0-py2.7-nspkg.pth │ │ ├── namedpkg-1.0-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ │ └── namedpkg │ │ └── parent.py │ ├── setuptools-28.7.0 │ ├── child │ │ ├── namedpkg │ │ │ └── slave.py │ │ ├── nameduser-1.5-py2.7-nspkg.pth │ │ └── nameduser-1.5-py2.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── namespace_packages.txt │ │ │ └── top_level.txt │ └── parent │ │ ├── namedpkg-1.0-py2.7-nspkg.pth │ │ ├── namedpkg-1.0-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ │ └── namedpkg │ │ └── parent.py │ ├── setuptools-31.0.0 │ ├── child │ │ ├── namedpkg │ │ │ └── slave.py │ │ ├── nameduser-1.5-py2.7-nspkg.pth │ │ └── nameduser-1.5-py2.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── namespace_packages.txt │ │ │ └── top_level.txt │ └── parent │ │ ├── namedpkg-1.0-py2.7-nspkg.pth │ │ ├── namedpkg-1.0-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ │ └── namedpkg │ │ └── parent.py │ ├── setuptools-34.3.0 │ ├── child │ │ ├── namedpkg │ │ │ └── slave.py │ │ ├── nameduser-1.5-py2.7-nspkg.pth │ │ └── nameduser-1.5-py2.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── namespace_packages.txt │ │ │ └── top_level.txt │ └── parent │ │ ├── namedpkg-1.0-py2.7-nspkg.pth │ │ ├── namedpkg-1.0-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ │ └── namedpkg │ │ └── parent.py │ └── setuptools-40.4.3 │ ├── child │ ├── namedpkg │ │ └── slave.py │ ├── nameduser-1.5-py2.7-nspkg.pth │ └── nameduser-1.5-py2.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ └── top_level.txt │ └── parent │ ├── namedpkg-1.0-py2.7-nspkg.pth │ ├── namedpkg-1.0-py2.7.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── namespace_packages.txt │ └── top_level.txt │ └── namedpkg │ └── parent.py ├── modulegraph_tests ├── __init__.py ├── test_basic.py ├── test_compiled_modules.py ├── test_edge_data.py ├── test_explicit_packages.py ├── test_implies.py ├── test_import_from_init.py ├── test_imports.py ├── test_modulegraph.py ├── test_pep420_nspkg.py ├── test_pycompat_pkg.py ├── test_relimport2.py ├── test_setuptools_nspkg.py ├── test_swig.py ├── test_util.py ├── test_version.py ├── test_zipio.py ├── testdata │ ├── nspkg │ │ ├── distribute-0.6.10 │ │ │ ├── child │ │ │ │ ├── namedpkg │ │ │ │ │ └── slave.py │ │ │ │ ├── nameduser-1.5-py2.6-nspkg.pth │ │ │ │ └── nameduser-1.5-py2.6.egg-info │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ └── top_level.txt │ │ │ └── parent │ │ │ │ ├── namedpkg-1.0-py2.6-nspkg.pth │ │ │ │ ├── namedpkg-1.0-py2.6.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ │ └── namedpkg │ │ │ │ └── parent.py │ │ ├── distribute-0.6.12 │ │ │ ├── child │ │ │ │ ├── namedpkg │ │ │ │ │ └── slave.py │ │ │ │ ├── nameduser-1.5-py2.5-nspkg.pth │ │ │ │ └── nameduser-1.5-py2.5.egg-info │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ └── top_level.txt │ │ │ └── parent │ │ │ │ ├── namedpkg-1.0-py2.5-nspkg.pth │ │ │ │ ├── namedpkg-1.0-py2.5.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ │ └── namedpkg │ │ │ │ └── parent.py │ │ ├── setuptools-0.6c9 │ │ │ ├── child │ │ │ │ ├── namedpkg │ │ │ │ │ └── slave.py │ │ │ │ ├── nameduser-1.5-py2.5-nspkg.pth │ │ │ │ └── nameduser-1.5-py2.5.egg-info │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── namespace_packages.txt │ │ │ │ │ └── top_level.txt │ │ │ └── parent │ │ │ │ ├── namedpkg-1.0-py2.5-nspkg.pth │ │ │ │ ├── namedpkg-1.0-py2.5.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ │ └── namedpkg │ │ │ │ └── parent.py │ │ └── src │ │ │ ├── child │ │ │ ├── namedpkg │ │ │ │ ├── __init__.py │ │ │ │ └── slave.py │ │ │ ├── nameduser.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── namespace_packages.txt │ │ │ │ └── top_level.txt │ │ │ └── setup.py │ │ │ ├── install.py │ │ │ └── parent │ │ │ ├── namedpkg.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── namespace_packages.txt │ │ │ └── top_level.txt │ │ │ ├── namedpkg │ │ │ ├── __init__.py │ │ │ └── parent.py │ │ │ └── setup.py │ ├── script │ ├── subdir │ │ ├── file1.txt │ │ └── file2.txt │ ├── syspath.egg │ ├── syspath.zip │ ├── syspath │ │ ├── myext.pyd │ │ ├── myext.so │ │ ├── mymodule.py │ │ ├── mymodule2.pyc │ │ ├── mymodule3.py │ │ └── mypkg │ │ │ └── __init__.py │ ├── test.egg │ ├── test.txt │ └── zipped.egg ├── testpkg-compatmodule │ └── pkg │ │ ├── __init__.py │ │ ├── api.py │ │ ├── api2.py │ │ └── api3.py ├── testpkg-compiled │ ├── compiled │ │ └── script.py │ └── source │ │ ├── mod1.py │ │ ├── mod2.py │ │ ├── mod3.py │ │ └── mod4.py ├── testpkg-edgedata │ ├── function_class_existing.py │ ├── function_conditional_existing.py │ ├── function_conditional_import2_existing.py │ ├── function_conditional_import_existing.py │ ├── function_existing.py │ ├── function_import2_existing.py │ ├── function_import_existing.py │ ├── pkg │ │ ├── __init__.py │ │ ├── function_class_existing.py │ │ ├── function_conditional_existing.py │ │ ├── function_conditional_import2_existing.py │ │ ├── function_conditional_import_existing.py │ │ ├── function_existing.py │ │ ├── function_import2_existing.py │ │ ├── function_import_existing.py │ │ ├── toplevel_class_existing.py │ │ ├── toplevel_conditional_existing.py │ │ ├── toplevel_conditional_import2_existing.py │ │ ├── toplevel_conditional_import_existing.py │ │ ├── toplevel_existing.py │ │ ├── toplevel_import2_existing.py │ │ └── toplevel_import_existing.py │ ├── script.py │ ├── script_from_import.py │ ├── script_multi_import.py │ ├── toplevel_class_existing.py │ ├── toplevel_conditional_existing.py │ ├── toplevel_conditional_import2_existing.py │ ├── toplevel_conditional_import_existing.py │ ├── toplevel_existing.py │ ├── toplevel_import2_existing.py │ └── toplevel_import_existing.py ├── testpkg-import-from-init │ ├── pkg │ │ ├── __init__.py │ │ └── subpkg │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ └── compat.py │ ├── pkg2 │ │ ├── __init__.py │ │ └── subpkg │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ └── compat.py │ └── script.py ├── testpkg-packages │ ├── main_script.py │ └── pkg │ │ ├── __init__.py │ │ ├── sub1 │ │ ├── __init__.py │ │ └── modA.py │ │ ├── sub2 │ │ ├── __init__.py │ │ └── mod.py │ │ └── sub3.py ├── testpkg-pep420-namespace │ ├── path1 │ │ └── package │ │ │ └── sub2.py │ └── path2 │ │ └── package │ │ ├── nspkg │ │ └── mod.py │ │ ├── sub1.py │ │ └── subpackage │ │ ├── __init__.py │ │ └── sub.py ├── testpkg-regr1 │ ├── main_script.py │ └── pkg │ │ ├── __init__.py │ │ ├── a.py │ │ └── b.py ├── testpkg-regr2 │ ├── main_script.py │ └── pkg │ │ ├── __init__.py │ │ ├── base.py │ │ └── pkg.py ├── testpkg-regr3 │ ├── mypkg │ │ ├── __init__.py │ │ └── distutils │ │ │ ├── __init__.py │ │ │ └── ccompiler.py │ └── script.py ├── testpkg-regr4 │ ├── pkg │ │ ├── __init__.py │ │ └── core │ │ │ ├── __init__.py │ │ │ ├── callables.py │ │ │ ├── listener.py │ │ │ └── listenerimpl.py │ └── script.py ├── testpkg-regr5 │ ├── __init__.py │ └── script.py ├── testpkg-regr6 │ ├── module.py │ └── script.py ├── testpkg-regr7 │ ├── pkg │ │ ├── __init__.py │ │ └── mod.py │ └── script.py ├── testpkg-regr8 │ ├── mod.py │ └── script.py ├── testpkg-relimport │ ├── mod.py │ ├── pkg │ │ ├── __init__.py │ │ ├── mod.py │ │ ├── oldstyle.py │ │ ├── relative.py │ │ ├── relimport.py │ │ ├── sub2 │ │ │ ├── __init__.py │ │ │ └── mod.py │ │ ├── subpkg │ │ │ ├── __init__.py │ │ │ ├── mod2.py │ │ │ ├── relative.py │ │ │ └── relative2.py │ │ └── toplevel.py │ └── script.py ├── testpkg-relimport2 │ ├── pkg │ │ ├── __init__.py │ │ ├── mod1.py │ │ ├── mod2.py │ │ ├── mod3.py │ │ └── sub │ │ │ └── __init__.py │ └── toplevel.py ├── testpkg-setuptools-namespace │ ├── setup.py │ └── src │ │ ├── nspkg.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ ├── not-zip-safe │ │ └── top_level.txt │ │ └── nspkg │ │ ├── __init__.py │ │ ├── module.py │ │ └── nssubpkg │ │ ├── __init__.py │ │ └── sub.py └── testpkg-swig │ └── pkg │ ├── __init__.py │ ├── _sample.py │ └── sample.py ├── pyproject.toml ├── scripts └── extract_implies.py ├── setup.cfg ├── setup.py └── tox.ini /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/changelog.rst -------------------------------------------------------------------------------- /doc/commandline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/commandline.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/find_modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/find_modules.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/modulegraph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/modulegraph.rst -------------------------------------------------------------------------------- /doc/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/util.rst -------------------------------------------------------------------------------- /doc/zipio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/doc/zipio.rst -------------------------------------------------------------------------------- /modulegraph/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.19.7" 2 | -------------------------------------------------------------------------------- /modulegraph/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/__main__.py -------------------------------------------------------------------------------- /modulegraph/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/_imp.py -------------------------------------------------------------------------------- /modulegraph/find_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/find_modules.py -------------------------------------------------------------------------------- /modulegraph/modulegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/modulegraph.py -------------------------------------------------------------------------------- /modulegraph/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/util.py -------------------------------------------------------------------------------- /modulegraph/zipio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph/zipio.py -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/child/nameduser-1.5-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg-1.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.1.0/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/child/nameduser-1.5-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg-1.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-28.7.0/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/child/nameduser-1.5-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg-1.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-31.0.0/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/child/nameduser-1.5-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg-1.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-34.3.0/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/child/nameduser-1.5-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg-1.0-py2.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_test/testdata/nspkg/setuptools-40.4.3/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ modulegraph tests """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_basic.py -------------------------------------------------------------------------------- /modulegraph_tests/test_compiled_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_compiled_modules.py -------------------------------------------------------------------------------- /modulegraph_tests/test_edge_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_edge_data.py -------------------------------------------------------------------------------- /modulegraph_tests/test_explicit_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_explicit_packages.py -------------------------------------------------------------------------------- /modulegraph_tests/test_implies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_implies.py -------------------------------------------------------------------------------- /modulegraph_tests/test_import_from_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_import_from_init.py -------------------------------------------------------------------------------- /modulegraph_tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_imports.py -------------------------------------------------------------------------------- /modulegraph_tests/test_modulegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_modulegraph.py -------------------------------------------------------------------------------- /modulegraph_tests/test_pep420_nspkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_pep420_nspkg.py -------------------------------------------------------------------------------- /modulegraph_tests/test_pycompat_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_pycompat_pkg.py -------------------------------------------------------------------------------- /modulegraph_tests/test_relimport2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_relimport2.py -------------------------------------------------------------------------------- /modulegraph_tests/test_setuptools_nspkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_setuptools_nspkg.py -------------------------------------------------------------------------------- /modulegraph_tests/test_swig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_swig.py -------------------------------------------------------------------------------- /modulegraph_tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_util.py -------------------------------------------------------------------------------- /modulegraph_tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_version.py -------------------------------------------------------------------------------- /modulegraph_tests/test_zipio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/test_zipio.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/child/nameduser-1.5-py2.6.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg-1.0-py2.6.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.10/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/child/nameduser-1.5-py2.5.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg-1.0-py2.5.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/distribute-0.6.12/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/child/nameduser-1.5-py2.5.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5-nspkg.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5-nspkg.pth -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg-1.0-py2.5.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/setuptools-0.6c9/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/namedpkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/child/namedpkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/namedpkg/slave.py: -------------------------------------------------------------------------------- 1 | """ slave packages """ 2 | import os 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/nameduser.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/child/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/child/setup.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/install.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | namedpkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/parent/namedpkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/namedpkg/parent.py: -------------------------------------------------------------------------------- 1 | """ parent packages """ 2 | import sys 3 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/nspkg/src/parent/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/nspkg/src/parent/setup.py -------------------------------------------------------------------------------- /modulegraph_tests/testdata/script: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import sys, os 3 | 4 | print (sys.version) 5 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/subdir/file1.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/subdir/file2.txt: -------------------------------------------------------------------------------- 1 | b 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/syspath.egg -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/syspath.zip -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/myext.pyd: -------------------------------------------------------------------------------- 1 | """ fake extension """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/myext.so: -------------------------------------------------------------------------------- 1 | """ fake extension """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/mymodule.py: -------------------------------------------------------------------------------- 1 | """ 2 | some module 3 | """ 4 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/mymodule2.pyc: -------------------------------------------------------------------------------- 1 | """ Fake module """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/mymodule3.py: -------------------------------------------------------------------------------- 1 | """ fake module """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/syspath/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ fake package """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/test.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/test.egg -------------------------------------------------------------------------------- /modulegraph_tests/testdata/test.txt: -------------------------------------------------------------------------------- 1 | This is test.txt 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testdata/zipped.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testdata/zipped.egg -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compatmodule/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compatmodule/pkg/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compatmodule/pkg/api.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compatmodule/pkg/api2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compatmodule/pkg/api2.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compatmodule/pkg/api3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compatmodule/pkg/api3.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compiled/compiled/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compiled/compiled/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compiled/source/mod1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compiled/source/mod1.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compiled/source/mod2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compiled/source/mod2.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compiled/source/mod3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compiled/source/mod3.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-compiled/source/mod4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-compiled/source/mod4.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_class_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_conditional_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_conditional_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_conditional_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/function_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.__init__ """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_class_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_conditional_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_conditional_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_conditional_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/function_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_class_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_conditional_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_conditional_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_conditional_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/pkg/toplevel_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-edgedata/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/script_from_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-edgedata/script_from_import.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/script_multi_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-edgedata/script_multi_import.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_class_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_conditional_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_conditional_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_conditional_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_import2_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-edgedata/toplevel_import_existing.py: -------------------------------------------------------------------------------- 1 | """ $fname """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg/subpkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-import-from-init/pkg/subpkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg/subpkg/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-import-from-init/pkg/subpkg/_collections.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg/subpkg/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-import-from-init/pkg/subpkg/compat.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg2/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg2.__init__ """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg2/subpkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-import-from-init/pkg2/subpkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg2/subpkg/_collections.py: -------------------------------------------------------------------------------- 1 | """ pkg2.subpkg._collections """ 2 | 3 | A, B = "A", "B" 4 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/pkg2/subpkg/compat.py: -------------------------------------------------------------------------------- 1 | """ pkg2.subpkg.compat """ 2 | 3 | X, Y = 1, 2 4 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-import-from-init/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-import-from-init/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/main_script.py: -------------------------------------------------------------------------------- 1 | import sys 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.init """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/sub1/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub1.init """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/sub1/modA.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub1.modA """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/sub2/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub2.init """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/sub2/mod.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub2.mod """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-packages/pkg/sub3.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub3 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-pep420-namespace/path1/package/sub2.py: -------------------------------------------------------------------------------- 1 | """ package.sub2 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-pep420-namespace/path2/package/nspkg/mod.py: -------------------------------------------------------------------------------- 1 | """ package.nspkg.mod """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-pep420-namespace/path2/package/sub1.py: -------------------------------------------------------------------------------- 1 | """ package.sub1 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-pep420-namespace/path2/package/subpackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-pep420-namespace/path2/package/subpackage/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-pep420-namespace/path2/package/subpackage/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-pep420-namespace/path2/package/subpackage/sub.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr1/main_script.py: -------------------------------------------------------------------------------- 1 | from pkg import a 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr1/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr1/pkg/a.py: -------------------------------------------------------------------------------- 1 | from . import b 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr1/pkg/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr2/main_script.py: -------------------------------------------------------------------------------- 1 | import pkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr2/pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr2/pkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr2/pkg/base.py: -------------------------------------------------------------------------------- 1 | """ package base """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr2/pkg/pkg.py: -------------------------------------------------------------------------------- 1 | """ nested """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr3/mypkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr3/mypkg/distutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr3/mypkg/distutils/ccompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr3/mypkg/distutils/ccompiler.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr3/script.py: -------------------------------------------------------------------------------- 1 | from mypkg.distutils import ccompiler 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.__init__ """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/pkg/core/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.core.__init__ """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/pkg/core/callables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr4/pkg/core/callables.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/pkg/core/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr4/pkg/core/listener.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/pkg/core/listenerimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr4/pkg/core/listenerimpl.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr4/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr4/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr5/__init__.py: -------------------------------------------------------------------------------- 1 | """ A dummy __init__ file """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr5/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr5/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr6/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr6/module.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr6/script.py: -------------------------------------------------------------------------------- 1 | import module 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr7/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ package """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr7/pkg/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-regr7/pkg/mod.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr7/script.py: -------------------------------------------------------------------------------- 1 | import pkg.mod as m 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr8/mod.py: -------------------------------------------------------------------------------- 1 | 2 | async def foo(): 3 | yield 1 4 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-regr8/script.py: -------------------------------------------------------------------------------- 1 | import mod 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/mod.py: -------------------------------------------------------------------------------- 1 | """ Toplevel module """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ A Package """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/mod.py: -------------------------------------------------------------------------------- 1 | """ A package module """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/oldstyle.py: -------------------------------------------------------------------------------- 1 | import mod 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/pkg/relative.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/relimport.py: -------------------------------------------------------------------------------- 1 | """ pkg.relimport """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/sub2/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub2 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/sub2/mod.py: -------------------------------------------------------------------------------- 1 | """ pkg.sub2.mod """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/subpkg/__init__.py: -------------------------------------------------------------------------------- 1 | """ pkg.subpkg """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/subpkg/mod2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/pkg/subpkg/mod2.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/subpkg/relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/pkg/subpkg/relative.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/subpkg/relative2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/pkg/subpkg/relative2.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/pkg/toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/pkg/toplevel.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport/script.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport2/pkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/pkg/mod1.py: -------------------------------------------------------------------------------- 1 | """ mod1 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/pkg/mod2.py: -------------------------------------------------------------------------------- 1 | """ mod2 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/pkg/mod3.py: -------------------------------------------------------------------------------- 1 | """ mod3 """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/pkg/sub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-relimport2/pkg/sub/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-relimport2/toplevel.py: -------------------------------------------------------------------------------- 1 | """ toplevel """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/setup.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/PKG-INFO -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/namespace_packages.txt -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | nspkg 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/module.py: -------------------------------------------------------------------------------- 1 | """ nspkg.module """ 2 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/nssubpkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/nssubpkg/__init__.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/nssubpkg/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-setuptools-namespace/src/nspkg/nssubpkg/sub.py -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-swig/pkg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-swig/pkg/_sample.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modulegraph_tests/testpkg-swig/pkg/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/modulegraph_tests/testpkg-swig/pkg/sample.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/extract_implies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/scripts/extract_implies.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronaldoussoren/modulegraph/HEAD/tox.ini --------------------------------------------------------------------------------