├── .changelog ├── 1.7.4.toml └── 1.7.6.toml ├── .github └── workflows │ └── python.yml ├── .gitignore ├── LICENSE ├── docs ├── build.novella └── content │ ├── changelog.md │ └── index.md ├── pyproject.toml ├── readme.md ├── src └── localimport │ ├── __init__.py │ └── py.typed └── tests ├── another_module.py ├── modules ├── another_module.py └── some_module.py ├── some_module.py └── test_localimport.py /.changelog/1.7.4.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/.changelog/1.7.4.toml -------------------------------------------------------------------------------- /.changelog/1.7.6.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/.changelog/1.7.6.toml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | __pycache__/ 3 | *.py[cod] 4 | *.egg-info 5 | README.rst 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/LICENSE -------------------------------------------------------------------------------- /docs/build.novella: -------------------------------------------------------------------------------- 1 | template "mkdocs" { 2 | site_name = "localimport" 3 | } 4 | -------------------------------------------------------------------------------- /docs/content/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/docs/content/changelog.md -------------------------------------------------------------------------------- /docs/content/index.md: -------------------------------------------------------------------------------- 1 | @cat ../../readme.md 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/readme.md -------------------------------------------------------------------------------- /src/localimport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/src/localimport/__init__.py -------------------------------------------------------------------------------- /src/localimport/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/another_module.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/another_module.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/some_module.py: -------------------------------------------------------------------------------- 1 | 2 | import another_module 3 | -------------------------------------------------------------------------------- /tests/some_module.py: -------------------------------------------------------------------------------- 1 | 2 | import another_module 3 | -------------------------------------------------------------------------------- /tests/test_localimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NiklasRosenstein/python-localimport/HEAD/tests/test_localimport.py --------------------------------------------------------------------------------