-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.34 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "artha"
version = "0.1.3"
description = "Project अर्थ"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Yash Bonde", email = "bonde.yash97@gmail.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
keywords = ["sanskrit", "nlp", "language-processing"]
dependencies = [
"asyncpg>=0.30.0",
"certifi>=2025.10.5",
"fire>=0.7.0",
"indic_transliteration==2.3.69",
"matplotlib>=3.10.7",
"psycopg2-binary>=2.9.10",
"pydantic-settings>=2.9.1",
"python-dotenv>=1.1.1",
"sqlalchemy>=2.0.41",
"tuneapi==8.0.22",
"Unidecode==1.3.6",
]
[project.urls]
Homepage = "https://github.com/yashbonde/artha"
Repository = "https://github.com/yashbonde/artha.git"
Documentation = "https://github.com/yashbonde/artha#readme"
[project.scripts]
artha-cli = "artha.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"alembic>=1.16.1",
"beautifulsoup4==4.13.4",
"datasets==3.6.0",
"fire>=0.7.0",
"ipykernel==6.29.5",
"tiktoken>=0.9.0",
"twine>=6.1.0",
]