blob: d3787228db1a48cda61d9c56b02da52fff029564 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
[project]
name = "umapyai"
version = "0.1.0"
description = "Uma Musume: Pretty Derby Build Assistant (AI)"
authors = [{ name = "Fuwn", email = "[email protected]" }]
dependencies = [
"chromadb>=1.0.15",
"sentence-transformers>=5.0.0",
"requests>=2.32.4",
"psutil>=7.0.0",
"loguru>=0.7.3",
"beautifulsoup4>=4.13.4",
"flask>=3.1.1",
"flask-cors>=6.0.1",
"flask-sock>=0.7.0",
"spacy>=3.8.7",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
"umapyai" = "umapyai:main"
"article_scraper" = "article_scraper:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = ["yapf>=0.43.0", "ruff>=0.12.5"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/umapyai"]
|