Metadata-Version: 2.1
Name: tko
Version: 0.0.2
Summary: tko: Test Engine for Judge Operations
Home-page: https://github.com/senapk/tko
Author: David Sena Oliveira
Author-email: sena@ufc.br
Project-URL: Bug Reports, https://github.com/senapk/tko/issues
Project-URL: Source, https://github.com/senapk/tko/
Keywords: programming,learning
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test
License-File: LICENSE

# tko - Test Engine for Judge Operations


## Configure the environment variables in the .env file

```bash
python -m venv venv
source ./venv/bin/activate (Linux, macOS) or ./venv/Scripts/activate (Win)
pip install -e .
```

## Install from git

```bash
pipx install git+https://github.com/senapk/tko.git 
```

## Requirements

Python 3.8 or later with all [requirements.txt](https://github.com/ultralytics/pip/blob/master/requirements.txt)
dependencies installed, including `build` and `twine`. To install run:

```bash
python -m pip install -U pip
pip install -r requirements.txt
```

## Pip Package Steps

### https://pypi.org/

```bash
# Build and upload https://pypi.org/
rm -rf build dist && python -m build && python -m twine upload dist/*
# username: __token__
# password: pypi-AgENdGVzdC5weXBpLm9yZ...

# Download and install
pip install -U ultralytics

# Import and test
python -c "from ultralytics import simple; print(simple.add_one(10))"
sample_script
```

### https://test.pypi.org/

```bash
# Build and upload https://test.pypi.org/
rm -rf build dist && python -m build && python -m twine upload --repository testpypi dist/*
# username: __token__
# password: pypi-AgENdGVzdC5weXBpLm9yZ...

# Download and install
pip install -U --index-url https://test.pypi.org/simple/ --no-deps ultralytics2==0.0.9

# Import and test
python -c "from ultralytics import simple; print(simple.add_one(10))"
sample_script
```
