-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "vedyut"
version = "0.1.0"
description = "High-performance Sanskrit NLP toolkit - Rust core + Python bindings"
authors = [
{name = "Vedant Madane", email = "vedant@example.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
keywords = ["sanskrit", "nlp", "linguistics", "panini", "grammar"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"httpx>=0.24.0",
"ruff>=0.1.0",
"numpy>=1.26.0",
"pdoc3>=0.11.6",
]
llm = [
"openai>=1.0.0",
"anthropic>=0.5.0",
"langchain>=0.1.0",
"litellm>=1.0.0",
"numpy>=1.26.0",
]
[project.urls]
Homepage = "https://github.com/VedantMadane/vedyut"
Documentation = "https://vedyut.readthedocs.io"
Repository = "https://github.com/VedantMadane/vedyut"
Issues = "https://github.com/VedantMadane/vedyut/issues"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
module-name = "vedyut._core"
manifest-path = "rust/vedyut-core/Cargo.toml"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.coverage.run]
source = ["python/vedyut"]
omit = ["*/tests/*"]