diff --git a/Formula/moodle-to-vikwikiquiz.rb b/Formula/moodle-to-vikwikiquiz.rb index 44a37b3..826b556 100644 --- a/Formula/moodle-to-vikwikiquiz.rb +++ b/Formula/moodle-to-vikwikiquiz.rb @@ -5,7 +5,7 @@ class MoodleToVikwikiquiz < Formula desc "A CLI for converting a graded Moodle quiz HTML to a vik.wiki quiz wikitext." homepage "https://github.com/gy-mate/homebrew-moodle-to-vikwikiquiz" - url "https://github.com/gy-mate/homebrew-moodle-to-vikwikiquiz/archive/1.0.13.tar.gz" + url "https://github.com/gy-mate/homebrew-moodle-to-vikwikiquiz/archive/1.0.14.tar.gz" license "GPl-3.0" sha256 "" head "https://github.com/gy-mate/homebrew-moodle-to-vikwikiquiz.git" diff --git a/setup.py b/setup.py index 5db7a90..7a85a36 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,13 @@ -from setuptools import setup, find_packages # type: ignore +from setuptools import find_namespace_packages, setup # type: ignore setup( 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.13", - packages=find_packages("src"), + version="1.0.14", + packages=find_namespace_packages("src"), + package_dir={"": "src"}, entry_points={ "console_scripts": [ "moodle-to-vikwikiquiz=src.main:main", diff --git a/src/__init__.py b/src/__init__.py deleted file mode 100644 index e69de29..0000000