├── .github └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── github2pypi ├── __init__.py ├── replace_url.py └── test_replace_url.py ├── pyproject.toml ├── setup.cfg └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/README.md -------------------------------------------------------------------------------- /github2pypi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/github2pypi/__init__.py -------------------------------------------------------------------------------- /github2pypi/replace_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/github2pypi/replace_url.py -------------------------------------------------------------------------------- /github2pypi/test_replace_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/github2pypi/test_replace_url.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wkentaro/github2pypi/HEAD/setup.py --------------------------------------------------------------------------------