ci/master/: testmodule-0.1.0 metadata and description

Simple index

A small demo module with a friendly greeting.

classifiers
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • License :: OSI Approved :: MIT License
  • Operating System :: OS Independent
requires_dist
  • pytest>=7; extra == "dev"
requires_python >=3.10

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
testmodule-0.1.0-py3-none-any.whl
Size
2 KB
Type
Python Wheel
Python
3
testmodule-0.1.0.tar.gz
Size
2 KB
Type
Source
# demo-module

A small demo package that exposes a single public function:

```python
from demo_module import hello

print(hello("World"))
```

## Development

Create a virtual environment, then install in editable mode:

```bash
pip install -e ".[dev]"
pytest
```


Render warnings:
<string>:5: (WARNING/2) Inline literal start-string without end-string.