Skip to content

Commit

Permalink
🔧 Fixed finding src by switching back to `find_namespace_packages()…
Browse files Browse the repository at this point in the history
…` & adding `package_dir=`
  • Loading branch information
gy-mate committed Jun 5, 2024
1 parent 7d42dde commit dc9e441
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Formula/moodle-to-vikwikiquiz.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Empty file removed src/__init__.py
Empty file.

0 comments on commit dc9e441

Please sign in to comment.