example_pypi_package icon indicating copy to clipboard operation
example_pypi_package copied to clipboard

Example PyPI (Python Package Index) package set up with automated tests and publishing using GitHub Actions CI/CD, primarily for GitHub + VS Code (Windows / Mac / Linux) users

Results 2 example_pypi_package issues
Sort by recently updated
recently updated
newest added
trafficstars

In my `setup.py`, I read both the README.md and the requirements.txt: ``` import setuptools, pathlib HERE = pathlib.Path(__file__).parent README = (HERE / "README.md").read_text() REQUIRES = (HERE / "requirements.txt").read_text().strip().split("\n") REQUIRES =...

I downloaded the example package and tried to run test_module1.py. I got an error: `ModuleNotFoundError: No module named 'examplepy'`. I use VSCode on Windows 10, and the contents of vscode.env...