altcomp/dev/: example-package-0.1.0 metadata and description

Simple index

A simple Python package for testing private pip repositories

author_email Your Name <your.email@example.com>
classifiers
  • Development Status :: 3 - Alpha
  • Intended Audience :: Developers
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
description_content_type text/markdown
dynamic
  • license-file
keywords example, test, package, pip
license MIT
license_file
  • LICENSE
project_urls
  • Homepage, https://github.com/yourusername/example-package
  • Repository, https://github.com/yourusername/example-package
  • Issues, https://github.com/yourusername/example-package/issues
requires_dist
  • pytest>=7.0; extra == "dev"
  • pytest-cov>=4.0; extra == "dev"
  • black>=22.0; extra == "dev"
  • flake8>=5.0; extra == "dev"
  • mypy>=1.0; extra == "dev"
requires_python >=3.8

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

File Tox results History
example_package-0.1.0-py3-none-any.whl
Size
5 KB
Type
Python Wheel
Python
3
example_package-0.1.0.tar.gz
Size
5 KB
Type
Source

Example Package

A simple Python package for testing private pip repositories.

Features

Installation

pip install example-package

Usage

Calculator

from example_package import Calculator

calc = Calculator()
result = calc.add(5, 3)  # 8
result = calc.multiply(4, 6)  # 24
print(calc.get_history())

TextProcessor

from example_package import TextProcessor

processor = TextProcessor()
text = "  Hello   World 123  "
cleaned = processor.clean_text(text)  # "Hello World 123"
word_count = processor.count_words(cleaned)  # 3
numbers = processor.extract_numbers(text)  # ["123"]

Development

Setup

git clone <repository-url>
cd example-package
pip install -e ".[dev]"

Running Tests

pytest

Code Formatting

black src/ tests/

License

MIT License