|
| 1 | +[project] |
| 2 | +name = "lbox-alignerr" |
| 3 | +version = "0.1.0" |
| 4 | +description = "Alignerr workspace management for Labelbox" |
| 5 | +authors = [ |
| 6 | + { name = "Labelbox", email = "engineering@labelbox.com" } |
| 7 | +] |
| 8 | +dependencies = [ |
| 9 | + "labelbox>=0.1.0", |
| 10 | + "pydantic>=2.0.0", |
| 11 | + "pyyaml>=6.0", |
| 12 | +] |
| 13 | +readme = "README.md" |
| 14 | +requires-python = ">= 3.9" |
| 15 | + |
| 16 | +classifiers=[ |
| 17 | + # How mature is this project? |
| 18 | + "Development Status :: 2 - Pre-Alpha", |
| 19 | + # Indicate who your project is intended for |
| 20 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 21 | + "Topic :: Software Development :: Libraries", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Intended Audience :: Science/Research", |
| 24 | + # Pick your license as you wish |
| 25 | + "License :: OSI Approved :: Apache Software License", |
| 26 | + # Specify the Python versions you support here. |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.9", |
| 29 | + "Programming Language :: Python :: 3.10", |
| 30 | + "Programming Language :: Python :: 3.11", |
| 31 | + "Programming Language :: Python :: 3.12", |
| 32 | +] |
| 33 | +keywords = ["ml", "ai", "labelbox", "labeling", "llm", "machinelearning", "alignerr", "lbox-alignerr"] |
| 34 | + |
| 35 | +[project.urls] |
| 36 | +Homepage = "https://labelbox.com/" |
| 37 | +Documentation = "https://labelbox-python.readthedocs.io/en/latest/" |
| 38 | +Repository = "https://github.com/Labelbox/labelbox-python" |
| 39 | +Issues = "https://github.com/Labelbox/labelbox-python/issues" |
| 40 | +Changelog = "https://github.com/Labelbox/labelbox-python/blob/develop/libs/labelbox/CHANGELOG.md" |
| 41 | + |
| 42 | +[build-system] |
| 43 | +requires = ["hatchling"] |
| 44 | +build-backend = "hatchling.build" |
| 45 | + |
| 46 | +[tool.rye] |
| 47 | +managed = true |
| 48 | +dev-dependencies = [ |
| 49 | + "pytest>=8.1.1", |
| 50 | + "pytest-cases>=3.8.4", |
| 51 | + "pytest-rerunfailures>=14.0", |
| 52 | + "pytest-snapshot>=0.9.0", |
| 53 | + "pytest-cov>=4.1.0", |
| 54 | + "pytest-xdist>=3.5.0", |
| 55 | + "faker>=25.5.0", |
| 56 | + "pytest-timestamper>=0.0.10", |
| 57 | + "pytest-timeout>=2.3.1", |
| 58 | + "pytest-order>=1.2.1", |
| 59 | + "pyjwt>=2.9.0", |
| 60 | +] |
| 61 | + |
| 62 | +[tool.rye.scripts] |
| 63 | +unit = "pytest tests/unit" |
| 64 | +integration = "pytest tests/integration" |
| 65 | + |
| 66 | +[tool.hatch.metadata] |
| 67 | +allow-direct-references = true |
| 68 | + |
| 69 | +[tool.hatch.build.targets.wheel] |
| 70 | +packages = ["src/alignerr"] |
| 71 | + |
| 72 | +[tool.pytest.ini_options] |
| 73 | +addopts = "-rP -vvv --durations=20 --cov=alignerr --import-mode=importlib" |
0 commit comments