Metadata-Version: 2.1
Name: pycpt
Version: 0.0.1
Summary: Python Competitive Programming Tools
Home-page: https://github.com/iTsluku/pycpt
Author: Andreas Einwiller
Author-email: andreas.einwiller@googlemail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: setuptools (==45.2.0) ; extra == 'dev'
Requires-Dist: pytest (>=4.6.9) ; extra == 'dev'
Requires-Dist: mock (~=4.0.3) ; extra == 'dev'

# Python Competitive Programming Tools

This is an example project demonstrating how to publish a python module to PyPI.

## Installation

Run the following to install:

```bash
$ pip install pycpt
```

## Usage

```python
from cpin import si,mi

# Get single int input value
t = si()

for _ in range(t):
    # Get multiple int input values
    a, b, c = mi()
    print("yay!")
```

## Development

To install pycpt, along with the tools you need to develop and run tests, run the following in your virtualenv:

```bash
$ pip install -e .[dev]
```

