├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── noxfile.py ├── pyproject.toml ├── src └── sample │ ├── __init__.py │ ├── package_data.dat │ └── simple.py └── tests ├── __init__.py └── test_simple.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/README.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/sample/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/src/sample/__init__.py -------------------------------------------------------------------------------- /src/sample/package_data.dat: -------------------------------------------------------------------------------- 1 | some data -------------------------------------------------------------------------------- /src/sample/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/src/sample/simple.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/sampleproject/HEAD/tests/test_simple.py --------------------------------------------------------------------------------