pyproject.toml (791B)
1 [tool.poetry] 2 name = "gus" 3 version = "0.3.0" 4 description = "Geminispace Universal Search" 5 authors = ["Vee <vee@vnsf.xyz>", "rwa <rwa@clttr.info>"] 6 license = "MIT" 7 8 [tool.poetry.dependencies] 9 python = "^3.11" 10 gusmobile = { git = "https://git.sr.ht/~rwa/gusmobile", branch = "main" } 11 whoosh = { git = "https://github.com/mchaput/whoosh", branch = "main" } 12 jetforce = "^0.10.1" 13 jinja2 = "^3.1.2" 14 peewee = "^3.16" 15 feedparser = "^6.0.10" 16 17 [tool.poetry.dev-dependencies] 18 black = "^19.10b0" 19 ipython = "^7.11.1" 20 pytest = "^7.3" 21 ipdb = "^0.13.3" 22 23 [tool.poetry.scripts] 24 crawl = "gus.crawl:main" 25 build_index = "gus.build_index:main" 26 serve = "serve.main:main" 27 statistics = "gus.lib.index_statistics:run_index_statistics" 28 29 [build-system] 30 requires = ["poetry>=0.12"] 31 build-backend = "poetry.masonry.api"