Slight update in docs. Released version 1.0.21.

This commit is contained in:
Boyan 2024-04-21 20:37:07 +02:00
parent 667a388da4
commit 54e086c93a
Signed by: boyan_k
GPG Key ID: 620E9CC7A57EAAA5
6 changed files with 4 additions and 30 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@ config.py
tests/
pathfinding/
test.py
setup.py
#Doc env
.docs_env

View File

@ -5,7 +5,7 @@ Creates the initial connection to Themis.
### Usage
```python
from temmies.Themis import Themis
from temmies.themis import Themis
themis = Themis("s-number", "password")
```

View File

@ -1,29 +0,0 @@
from setuptools import find_packages, setup
with open("README.md", "r") as f:
l_description = f.read()
setup(
name="temmies",
version="1.0.1",
package_dir = {"": "temmies"},
packages=find_packages(where="temmies"),
description="A wrapper for the Themis website",
long_description=l_description,
long_description_content_type="text/markdown",
url="https://github.com/Code-For-Groningen/temmies",
author="Boyan K.",
author_email="boyan@confest.im",
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.9",
],
install_requires=[
"requests",
"bs4",
],
python_requires=">=3.9",
)

View File

@ -0,0 +1 @@
from .themis import Themis

View File

@ -4,6 +4,7 @@ Houses the Course class which is used to represent a course in a year.
from bs4 import BeautifulSoup
from requests import Session
from .exercise_group import ExerciseGroup
from .exceptions.course_unavailable import CourseUnavailable
from .exceptions.illegal_action import IllegalAction

View File