Skip to content

Commit

Permalink
➕ Added further info about the project
Browse files Browse the repository at this point in the history
  • Loading branch information
gy-mate committed Jun 4, 2024
1 parent 22fbcfd commit 7a18ae4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
from setuptools import setup, find_packages # type: ignore

setup(
name='moodle-to-vikwikiquiz',
version='1.0.0',
name="moodle-to-vikwikiquiz",
description="A CLI for converting a graded Moodle quiz HTML to a vik.wiki quiz wikitext.",
author="Máté Gyöngyösi",
url="https://github.com/gy-mate/homebrew-moodle-to-vikwikiquiz",
version="1.0.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'moodle-to-vikwikiquiz=src.main:main',
"console_scripts": [
"moodle-to-vikwikiquiz=src.main:main",
],
},
python_requires=">=3.9",
)

0 comments on commit 7a18ae4

Please sign in to comment.