From d46d18d2ffdcffe81ac6af51083a294450562c72 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 12 Sep 2025 07:45:43 +0200 Subject: [PATCH] All plugins: Add pyproject.toml to make them installable with pip --- AtB/pyproject.toml | 27 ++++++++++++++++++++++ AutoOp/pyproject.toml | 27 ++++++++++++++++++++++ BadeTemp/pyproject.toml | 27 ++++++++++++++++++++++ DuckDuckGo/pyproject.toml | 27 ++++++++++++++++++++++ GodtNo/pyproject.toml | 27 ++++++++++++++++++++++ Gulesider/pyproject.toml | 27 ++++++++++++++++++++++ Hailo/pyproject.toml | 28 +++++++++++++++++++++++ ImgGet/pyproject.toml | 27 ++++++++++++++++++++++ Kommune/pyproject.toml | 27 ++++++++++++++++++++++ LastFM/pyproject.toml | 27 ++++++++++++++++++++++ NTNUCourses/pyproject.toml | 27 ++++++++++++++++++++++ Navnedag/pyproject.toml | 27 ++++++++++++++++++++++ OMDb/pyproject.toml | 27 ++++++++++++++++++++++ PasswordTester/pyproject.toml | 27 ++++++++++++++++++++++ RioMedals/pyproject.toml | 27 ++++++++++++++++++++++ RottenTomatoes/pyproject.toml | 27 ++++++++++++++++++++++ RulesOfAcquisition/pyproject.toml | 27 ++++++++++++++++++++++ SSB/pyproject.toml | 27 ++++++++++++++++++++++ Series/pyproject.toml | 27 ++++++++++++++++++++++ Spotify/pyproject.toml | 27 ++++++++++++++++++++++ Timer/pyproject.toml | 27 ++++++++++++++++++++++ TraktTV/pyproject.toml | 27 ++++++++++++++++++++++ UrlShortener/pyproject.toml | 27 ++++++++++++++++++++++ WTFSIMFD/pyproject.toml | 27 ++++++++++++++++++++++ Week/pyproject.toml | 27 ++++++++++++++++++++++ Wolfram/pyproject.toml | 27 ++++++++++++++++++++++ Yr/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/BattleNet/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/Diablo/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/FacebookImage/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/IsSteamDown/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/Patdown/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/Ruter/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/SWTOR/pyproject.toml | 27 ++++++++++++++++++++++ dead-plugins/SupySnap/pyproject.toml | 27 ++++++++++++++++++++++ 35 files changed, 946 insertions(+) create mode 100644 AtB/pyproject.toml create mode 100644 AutoOp/pyproject.toml create mode 100644 BadeTemp/pyproject.toml create mode 100644 DuckDuckGo/pyproject.toml create mode 100644 GodtNo/pyproject.toml create mode 100644 Gulesider/pyproject.toml create mode 100644 Hailo/pyproject.toml create mode 100644 ImgGet/pyproject.toml create mode 100644 Kommune/pyproject.toml create mode 100644 LastFM/pyproject.toml create mode 100644 NTNUCourses/pyproject.toml create mode 100644 Navnedag/pyproject.toml create mode 100644 OMDb/pyproject.toml create mode 100644 PasswordTester/pyproject.toml create mode 100644 RioMedals/pyproject.toml create mode 100644 RottenTomatoes/pyproject.toml create mode 100644 RulesOfAcquisition/pyproject.toml create mode 100644 SSB/pyproject.toml create mode 100644 Series/pyproject.toml create mode 100644 Spotify/pyproject.toml create mode 100644 Timer/pyproject.toml create mode 100644 TraktTV/pyproject.toml create mode 100644 UrlShortener/pyproject.toml create mode 100644 WTFSIMFD/pyproject.toml create mode 100644 Week/pyproject.toml create mode 100644 Wolfram/pyproject.toml create mode 100644 Yr/pyproject.toml create mode 100644 dead-plugins/BattleNet/pyproject.toml create mode 100644 dead-plugins/Diablo/pyproject.toml create mode 100644 dead-plugins/FacebookImage/pyproject.toml create mode 100644 dead-plugins/IsSteamDown/pyproject.toml create mode 100644 dead-plugins/Patdown/pyproject.toml create mode 100644 dead-plugins/Ruter/pyproject.toml create mode 100644 dead-plugins/SWTOR/pyproject.toml create mode 100644 dead-plugins/SupySnap/pyproject.toml diff --git a/AtB/pyproject.toml b/AtB/pyproject.toml new file mode 100644 index 0000000..eb8926c --- /dev/null +++ b/AtB/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-atb" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +AtB = "limnoria_atb" + +[tool.setuptools.package-dir] +"limnoria_atb" = "." + +[tool.setuptools.package-data] +"limnoria_atb" = ["locales/*.po"] diff --git a/AutoOp/pyproject.toml b/AutoOp/pyproject.toml new file mode 100644 index 0000000..66e327f --- /dev/null +++ b/AutoOp/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-autoop" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +AutoOp = "limnoria_autoop" + +[tool.setuptools.package-dir] +"limnoria_autoop" = "." + +[tool.setuptools.package-data] +"limnoria_autoop" = ["locales/*.po"] diff --git a/BadeTemp/pyproject.toml b/BadeTemp/pyproject.toml new file mode 100644 index 0000000..b3db8a7 --- /dev/null +++ b/BadeTemp/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-badetemp" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +BadeTemp = "limnoria_badetemp" + +[tool.setuptools.package-dir] +"limnoria_badetemp" = "." + +[tool.setuptools.package-data] +"limnoria_badetemp" = ["locales/*.po"] diff --git a/DuckDuckGo/pyproject.toml b/DuckDuckGo/pyproject.toml new file mode 100644 index 0000000..b0d9a4d --- /dev/null +++ b/DuckDuckGo/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-duckduckgo" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +DuckDuckGo = "limnoria_duckduckgo" + +[tool.setuptools.package-dir] +"limnoria_duckduckgo" = "." + +[tool.setuptools.package-data] +"limnoria_duckduckgo" = ["locales/*.po"] diff --git a/GodtNo/pyproject.toml b/GodtNo/pyproject.toml new file mode 100644 index 0000000..f57167b --- /dev/null +++ b/GodtNo/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-godtno" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +GodtNo = "limnoria_godtno" + +[tool.setuptools.package-dir] +"limnoria_godtno" = "." + +[tool.setuptools.package-data] +"limnoria_godtno" = ["locales/*.po"] diff --git a/Gulesider/pyproject.toml b/Gulesider/pyproject.toml new file mode 100644 index 0000000..666183e --- /dev/null +++ b/Gulesider/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-gulesider" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Gulesider = "limnoria_gulesider" + +[tool.setuptools.package-dir] +"limnoria_gulesider" = "." + +[tool.setuptools.package-data] +"limnoria_gulesider" = ["locales/*.po"] diff --git a/Hailo/pyproject.toml b/Hailo/pyproject.toml new file mode 100644 index 0000000..5d9cfc4 --- /dev/null +++ b/Hailo/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-hailo" +version = "0.0.0" +authors = [ + { name = "2006 Tom Morton, Sebastien Dailly" }, + { name = "Nicolas Coevoet" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Hailo = "limnoria_hailo" + +[tool.setuptools.package-dir] +"limnoria_hailo" = "." + +[tool.setuptools.package-data] +"limnoria_hailo" = ["locales/*.po"] diff --git a/ImgGet/pyproject.toml b/ImgGet/pyproject.toml new file mode 100644 index 0000000..8b5b1d7 --- /dev/null +++ b/ImgGet/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-imgget" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +ImgGet = "limnoria_imgget" + +[tool.setuptools.package-dir] +"limnoria_imgget" = "." + +[tool.setuptools.package-data] +"limnoria_imgget" = ["locales/*.po"] diff --git a/Kommune/pyproject.toml b/Kommune/pyproject.toml new file mode 100644 index 0000000..37d88ae --- /dev/null +++ b/Kommune/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-kommune" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Kommune = "limnoria_kommune" + +[tool.setuptools.package-dir] +"limnoria_kommune" = "." + +[tool.setuptools.package-data] +"limnoria_kommune" = ["locales/*.po"] diff --git a/LastFM/pyproject.toml b/LastFM/pyproject.toml new file mode 100644 index 0000000..3c29eee --- /dev/null +++ b/LastFM/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-lastfm" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +LastFM = "limnoria_lastfm" + +[tool.setuptools.package-dir] +"limnoria_lastfm" = "." + +[tool.setuptools.package-data] +"limnoria_lastfm" = ["locales/*.po"] diff --git a/NTNUCourses/pyproject.toml b/NTNUCourses/pyproject.toml new file mode 100644 index 0000000..fe3a74f --- /dev/null +++ b/NTNUCourses/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-ntnucourses" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +NTNUCourses = "limnoria_ntnucourses" + +[tool.setuptools.package-dir] +"limnoria_ntnucourses" = "." + +[tool.setuptools.package-data] +"limnoria_ntnucourses" = ["locales/*.po"] diff --git a/Navnedag/pyproject.toml b/Navnedag/pyproject.toml new file mode 100644 index 0000000..265061f --- /dev/null +++ b/Navnedag/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-navnedag" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Navnedag = "limnoria_navnedag" + +[tool.setuptools.package-dir] +"limnoria_navnedag" = "." + +[tool.setuptools.package-data] +"limnoria_navnedag" = ["locales/*.po"] diff --git a/OMDb/pyproject.toml b/OMDb/pyproject.toml new file mode 100644 index 0000000..8a862b2 --- /dev/null +++ b/OMDb/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-omdb" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +OMDb = "limnoria_omdb" + +[tool.setuptools.package-dir] +"limnoria_omdb" = "." + +[tool.setuptools.package-data] +"limnoria_omdb" = ["locales/*.po"] diff --git a/PasswordTester/pyproject.toml b/PasswordTester/pyproject.toml new file mode 100644 index 0000000..237f409 --- /dev/null +++ b/PasswordTester/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-passwordtester" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +PasswordTester = "limnoria_passwordtester" + +[tool.setuptools.package-dir] +"limnoria_passwordtester" = "." + +[tool.setuptools.package-data] +"limnoria_passwordtester" = ["locales/*.po"] diff --git a/RioMedals/pyproject.toml b/RioMedals/pyproject.toml new file mode 100644 index 0000000..5108d89 --- /dev/null +++ b/RioMedals/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-riomedals" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +RioMedals = "limnoria_riomedals" + +[tool.setuptools.package-dir] +"limnoria_riomedals" = "." + +[tool.setuptools.package-data] +"limnoria_riomedals" = ["locales/*.po"] diff --git a/RottenTomatoes/pyproject.toml b/RottenTomatoes/pyproject.toml new file mode 100644 index 0000000..6357019 --- /dev/null +++ b/RottenTomatoes/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-rottentomatoes" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +RottenTomatoes = "limnoria_rottentomatoes" + +[tool.setuptools.package-dir] +"limnoria_rottentomatoes" = "." + +[tool.setuptools.package-data] +"limnoria_rottentomatoes" = ["locales/*.po"] diff --git a/RulesOfAcquisition/pyproject.toml b/RulesOfAcquisition/pyproject.toml new file mode 100644 index 0000000..c84b05d --- /dev/null +++ b/RulesOfAcquisition/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-rulesofacquisition" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +RulesOfAcquisition = "limnoria_rulesofacquisition" + +[tool.setuptools.package-dir] +"limnoria_rulesofacquisition" = "." + +[tool.setuptools.package-data] +"limnoria_rulesofacquisition" = ["locales/*.po"] diff --git a/SSB/pyproject.toml b/SSB/pyproject.toml new file mode 100644 index 0000000..8cfa287 --- /dev/null +++ b/SSB/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-ssb" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +SSB = "limnoria_ssb" + +[tool.setuptools.package-dir] +"limnoria_ssb" = "." + +[tool.setuptools.package-data] +"limnoria_ssb" = ["locales/*.po"] diff --git a/Series/pyproject.toml b/Series/pyproject.toml new file mode 100644 index 0000000..ac235dc --- /dev/null +++ b/Series/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-series" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Series = "limnoria_series" + +[tool.setuptools.package-dir] +"limnoria_series" = "." + +[tool.setuptools.package-data] +"limnoria_series" = ["locales/*.po"] diff --git a/Spotify/pyproject.toml b/Spotify/pyproject.toml new file mode 100644 index 0000000..856b86f --- /dev/null +++ b/Spotify/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-spotify" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Spotify = "limnoria_spotify" + +[tool.setuptools.package-dir] +"limnoria_spotify" = "." + +[tool.setuptools.package-data] +"limnoria_spotify" = ["locales/*.po"] diff --git a/Timer/pyproject.toml b/Timer/pyproject.toml new file mode 100644 index 0000000..86cf6c3 --- /dev/null +++ b/Timer/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-timer" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Timer = "limnoria_timer" + +[tool.setuptools.package-dir] +"limnoria_timer" = "." + +[tool.setuptools.package-data] +"limnoria_timer" = ["locales/*.po"] diff --git a/TraktTV/pyproject.toml b/TraktTV/pyproject.toml new file mode 100644 index 0000000..dd7581f --- /dev/null +++ b/TraktTV/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-trakttv" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +TraktTV = "limnoria_trakttv" + +[tool.setuptools.package-dir] +"limnoria_trakttv" = "." + +[tool.setuptools.package-data] +"limnoria_trakttv" = ["locales/*.po"] diff --git a/UrlShortener/pyproject.toml b/UrlShortener/pyproject.toml new file mode 100644 index 0000000..473644d --- /dev/null +++ b/UrlShortener/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-urlshortener" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +UrlShortener = "limnoria_urlshortener" + +[tool.setuptools.package-dir] +"limnoria_urlshortener" = "." + +[tool.setuptools.package-data] +"limnoria_urlshortener" = ["locales/*.po"] diff --git a/WTFSIMFD/pyproject.toml b/WTFSIMFD/pyproject.toml new file mode 100644 index 0000000..d8531da --- /dev/null +++ b/WTFSIMFD/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-wtfsimfd" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +WTFSIMFD = "limnoria_wtfsimfd" + +[tool.setuptools.package-dir] +"limnoria_wtfsimfd" = "." + +[tool.setuptools.package-data] +"limnoria_wtfsimfd" = ["locales/*.po"] diff --git a/Week/pyproject.toml b/Week/pyproject.toml new file mode 100644 index 0000000..742ff7b --- /dev/null +++ b/Week/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-week" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Week = "limnoria_week" + +[tool.setuptools.package-dir] +"limnoria_week" = "." + +[tool.setuptools.package-data] +"limnoria_week" = ["locales/*.po"] diff --git a/Wolfram/pyproject.toml b/Wolfram/pyproject.toml new file mode 100644 index 0000000..3a8fe9f --- /dev/null +++ b/Wolfram/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-wolfram" +version = "0.1" +authors = [ + +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Wolfram = "limnoria_wolfram" + +[tool.setuptools.package-dir] +"limnoria_wolfram" = "." + +[tool.setuptools.package-data] +"limnoria_wolfram" = ["locales/*.po"] diff --git a/Yr/pyproject.toml b/Yr/pyproject.toml new file mode 100644 index 0000000..05b6f7b --- /dev/null +++ b/Yr/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-yr" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Yr = "limnoria_yr" + +[tool.setuptools.package-dir] +"limnoria_yr" = "." + +[tool.setuptools.package-data] +"limnoria_yr" = ["locales/*.po"] diff --git a/dead-plugins/BattleNet/pyproject.toml b/dead-plugins/BattleNet/pyproject.toml new file mode 100644 index 0000000..a6ce0a4 --- /dev/null +++ b/dead-plugins/BattleNet/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-battlenet" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +BattleNet = "limnoria_battlenet" + +[tool.setuptools.package-dir] +"limnoria_battlenet" = "." + +[tool.setuptools.package-data] +"limnoria_battlenet" = ["locales/*.po"] diff --git a/dead-plugins/Diablo/pyproject.toml b/dead-plugins/Diablo/pyproject.toml new file mode 100644 index 0000000..d58ca65 --- /dev/null +++ b/dead-plugins/Diablo/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-diablo" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Diablo = "limnoria_diablo" + +[tool.setuptools.package-dir] +"limnoria_diablo" = "." + +[tool.setuptools.package-data] +"limnoria_diablo" = ["locales/*.po"] diff --git a/dead-plugins/FacebookImage/pyproject.toml b/dead-plugins/FacebookImage/pyproject.toml new file mode 100644 index 0000000..a1b89b1 --- /dev/null +++ b/dead-plugins/FacebookImage/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-facebookimage" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +FacebookImage = "limnoria_facebookimage" + +[tool.setuptools.package-dir] +"limnoria_facebookimage" = "." + +[tool.setuptools.package-data] +"limnoria_facebookimage" = ["locales/*.po"] diff --git a/dead-plugins/IsSteamDown/pyproject.toml b/dead-plugins/IsSteamDown/pyproject.toml new file mode 100644 index 0000000..51510eb --- /dev/null +++ b/dead-plugins/IsSteamDown/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-issteamdown" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +IsSteamDown = "limnoria_issteamdown" + +[tool.setuptools.package-dir] +"limnoria_issteamdown" = "." + +[tool.setuptools.package-data] +"limnoria_issteamdown" = ["locales/*.po"] diff --git a/dead-plugins/Patdown/pyproject.toml b/dead-plugins/Patdown/pyproject.toml new file mode 100644 index 0000000..f11b65d --- /dev/null +++ b/dead-plugins/Patdown/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-patdown" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Patdown = "limnoria_patdown" + +[tool.setuptools.package-dir] +"limnoria_patdown" = "." + +[tool.setuptools.package-data] +"limnoria_patdown" = ["locales/*.po"] diff --git a/dead-plugins/Ruter/pyproject.toml b/dead-plugins/Ruter/pyproject.toml new file mode 100644 index 0000000..ae7382e --- /dev/null +++ b/dead-plugins/Ruter/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-ruter" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +Ruter = "limnoria_ruter" + +[tool.setuptools.package-dir] +"limnoria_ruter" = "." + +[tool.setuptools.package-data] +"limnoria_ruter" = ["locales/*.po"] diff --git a/dead-plugins/SWTOR/pyproject.toml b/dead-plugins/SWTOR/pyproject.toml new file mode 100644 index 0000000..3ad9952 --- /dev/null +++ b/dead-plugins/SWTOR/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-swtor" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +SWTOR = "limnoria_swtor" + +[tool.setuptools.package-dir] +"limnoria_swtor" = "." + +[tool.setuptools.package-data] +"limnoria_swtor" = ["locales/*.po"] diff --git a/dead-plugins/SupySnap/pyproject.toml b/dead-plugins/SupySnap/pyproject.toml new file mode 100644 index 0000000..db644d9 --- /dev/null +++ b/dead-plugins/SupySnap/pyproject.toml @@ -0,0 +1,27 @@ +[build-system] +requires = ["setuptools"] + +[project] +name = "limnoria-supysnap" +version = "0.0.0" +authors = [ + { name = "Terje Hoås" }, +] +readme = "README.md" +dependencies = [ + "limnoria", +] +classifiers = [ + 'Environment :: Plugins', + 'Programming Language :: Python :: 3', + 'Topic :: Communications :: Chat', +] + +[project.entry-points.'limnoria.plugins'] +SupySnap = "limnoria_supysnap" + +[tool.setuptools.package-dir] +"limnoria_supysnap" = "." + +[tool.setuptools.package-data] +"limnoria_supysnap" = ["locales/*.po"]