| [project] |
| name = "universal-dependencies" |
| version = "2.2.1" |
| description = "UD Dependencies Data Set" |
| readme = "README.md" |
| requires-python = ">=3.12" |
| dependencies = [ |
| "pyyaml>=6.0.2", |
| "pyarrow>=14.0.0", |
| "datasets>=4.0.0", |
| "conllu>=5.0.0", |
| "pytest>=7.0.0", |
| "python-dotenv>=1.0.0", |
| "ud-hf-parquet-tools", |
| "jinja2>=3.1.6", |
| ] |
|
|
| [build-system] |
| requires = ["setuptools>=61.0"] |
| build-backend = "setuptools.build_meta" |
|
|
| [tool.black] |
| line-length = 120 |
| target-version = ['py312'] |
| exclude = ''' |
| ( |
| /( |
| \.eggs |
| | \.git |
| | \.pytest_cache |
| | build |
| | dist |
| | venv |
| )/ |
| ) |
| ''' |
|
|
| [tool.pytest.ini_options] |
| addopts = "" |
|
|
| [tool.mypy] |
| exclude = [".git/", ".venv/", "__pycache__", "build", "venv"] |
|
|
| [tool.ruff] |
| line-length = 120 |
| target-version = "py312" |
|
|
| [tool.ruff.lint.isort] |
| length-sort = true |
| lines-after-imports = 2 |
| no-lines-before = ["standard-library", "local-folder"] |
|
|
| [tool.ruff.format] |
| quote-style = "double" |
| indent-style = "space" |
| skip-magic-trailing-comma = false |
| line-ending = "auto" |
|
|
| [[tool.uv.index]] |
| name = "PyPI" |
| url = "https://pypi.org/simple/" |
| default = true |
|
|
| [[tool.uv.index]] |
| name = "TestPyPI" |
| url = "https://test.pypi.org/simple/" |
| explicit = true |
|
|
| [tool.uv.sources] |
| ud-hf-parquet-tools = { git = "https://github.com/bot-zen/ud-hf-parquet-tools", tag = "v1.2.3" } |
|
|