Metadata-Version: 2.1
Name: cptk
Version: 0.1.0a0
Summary: Your personal assistant for everything competitive-programming-related.
Home-page: https://github.com/RealA10N/cptk
Author: Alon Krymgand Osovsky
Author-email: downtown2u@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.7,<4
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (<5,>=4.10)
Requires-Dist: colorama (<0.5,>=0.4.3)
Requires-Dist: jinja2 (<3.1,>=3.0)
Requires-Dist: lxml (<5,>=4.6)
Requires-Dist: pydantic (<2.0,>=1.9)
Requires-Dist: python-slugify (<6,>=5.0)
Requires-Dist: pyyaml (<7.0,>=6.0)
Requires-Dist: requests (<3.0,>=2.20)

# Competitive Programming Tool Kit

[![cptk](https://img.shields.io/static/v1?label=using&message=cptk&color=ffbb00)](https://github.com/RealA10N/cptk)
[![PyPI](https://img.shields.io/pypi/v/cptk?logo=python&logoColor=white)](https://pypi.org/project/cptk)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/RealA10N/cptk/main.svg)](https://results.pre-commit.ci/latest/github/RealA10N/cptk/main)
[![GitHub Workflow](https://img.shields.io/github/workflow/status/reala10n/cptk/CI/main?logo=github&logoColor=white)](https://github.com/RealA10N/cptk/actions/workflows/ci.yaml?query=branch%3Amain)
[![codecov](https://img.shields.io/codecov/c/github/reala10n/cptk?logo=codecov&logoColor=white)](https://codecov.io/gh/RealA10N/cptk)

**The Competitive Programming Tool Kit** (_cptk_ for short), is a command-line interface (CLI) that aims to be your personal assistant for everything competitive-programming-related. Some of the main features of cptk are:

- Supports all large CP websites, including [codeforces.com](https://codeforces.com/), [cses.fi](https://cses.fi/) and [kattis.com](https://open.kattis.com/)
- Automatically download and run example test cases
- Manage and catalog your CP folder structure
- Full git integration: commits and pushes solutions after you submit them
- And much more!

**Are you using cptk?** Show us love and display the [![cptk](https://img.shields.io/static/v1?label=using&message=cptk&color=ffbb00)](https://github.com/RealA10N/cptk) badge in your repository!

## Getting started

### Installation

The Competitive Programming Tool Kit is implemented fully in Python and is
distributed using the Python Package Index (PyPI).

To use cptk make sure you have **CPython>=3.7** installed.
Then, install cptk using `pip`:

```shell
pip install cptk
```

You can check that the installation went successfully by running:

```shell
cptk --help
```

If you are experiencing problems while installing cptk, check out the more
detailed [Installation Guide](https://github.com/RealA10N/cptk/wiki/Installation).


# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0a0] - 15.2.2022

The first (alpha) release of cptk! 🥳
Feel free to use the software and report any bugs that you find!
Enjoy and have a nice day! 😃

### Added
- Supported commands are: `cptk initialize`, `cptk clone`, `cptk move`,
  `cptk bake` and `cptk serve`.

[0.1.0a0]: https://github.com/RealA10N/cptk/releases/tag/v0.1.0a0


