|
| 1 | +[project] |
| 2 | +name = "uipath-llama" |
| 3 | +version = "0.0.1" |
| 4 | +description = "UiPath Llama SDK" |
| 5 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 6 | +requires-python = ">=3.10" |
| 7 | +dependencies = [ |
| 8 | + "uipath>=2.0.56", |
| 9 | +] |
| 10 | +classifiers = [ |
| 11 | + "Development Status :: 3 - Alpha", |
| 12 | + "Intended Audience :: Developers", |
| 13 | + "Topic :: Software Development :: Build Tools", |
| 14 | + "Programming Language :: Python :: 3.10", |
| 15 | + "Programming Language :: Python :: 3.11", |
| 16 | + "Programming Language :: Python :: 3.12", |
| 17 | +] |
| 18 | +maintainers = [ |
| 19 | + { name = "Marius Cosareanu", email = "marius.cosareanu@uipath.com" }, |
| 20 | + { name = "Cristian Pufu", email = "cristian.pufu@uipath.com" } |
| 21 | +] |
| 22 | + |
| 23 | +[project.entry-points."uipath.middlewares"] |
| 24 | +register = "uipath_llama.middlewares:register_middleware" |
| 25 | + |
| 26 | +[project.urls] |
| 27 | +Homepage = "https://uipath.com" |
| 28 | +Repository = "https://github.com/UiPath/uipath-llama-python" |
| 29 | + |
| 30 | +[build-system] |
| 31 | +requires = ["hatchling"] |
| 32 | +build-backend = "hatchling.build" |
| 33 | + |
| 34 | +[dependency-groups] |
| 35 | +dev = [ |
| 36 | + "mypy>=1.14.1", |
| 37 | + "ruff>=0.9.4", |
| 38 | + "pytest>=7.4.0", |
| 39 | + "pytest-cov>=4.1.0", |
| 40 | + "pytest-mock>=3.11.1", |
| 41 | + "pre-commit>=4.1.0", |
| 42 | + "numpy>=1.24.0", |
| 43 | +] |
| 44 | + |
| 45 | +[tool.ruff] |
| 46 | +line-length = 88 |
| 47 | +indent-width = 4 |
| 48 | + |
| 49 | +[tool.ruff.lint] |
| 50 | +select = ["E", "F", "B", "I"] |
| 51 | + |
| 52 | +[tool.ruff.lint.per-file-ignores] |
| 53 | +"*" = ["E501"] |
| 54 | + |
| 55 | +[tool.ruff.format] |
| 56 | +quote-style = "double" |
| 57 | +indent-style = "space" |
| 58 | +skip-magic-trailing-comma = false |
| 59 | +line-ending = "auto" |
| 60 | + |
| 61 | +[tool.mypy] |
| 62 | +plugins = [ |
| 63 | + "pydantic.mypy" |
| 64 | +] |
| 65 | + |
| 66 | +follow_imports = "silent" |
| 67 | +warn_redundant_casts = true |
| 68 | +warn_unused_ignores = true |
| 69 | +disallow_any_generics = true |
| 70 | +check_untyped_defs = true |
| 71 | +no_implicit_reexport = true |
| 72 | + |
| 73 | +disallow_untyped_defs = false |
| 74 | + |
| 75 | +[tool.pytest.ini_options] |
| 76 | +testpaths = ["tests"] |
| 77 | +python_files = "test_*.py" |
| 78 | +addopts = "-ra -q" |
| 79 | + |
| 80 | + |
0 commit comments