|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=68", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "tucana" |
| 7 | +version = "0.0.0" |
| 8 | +description = "Code0 GRPC Protocol" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.10" |
| 11 | +license = "MIT" |
| 12 | +authors = [ |
| 13 | + { name = "Code0 UG (haftungsbeschränkt)", email = "info@code0.tech" } |
| 14 | +] |
| 15 | +keywords = ["grpc", "protobuf", "code0"] |
| 16 | +classifiers = [ |
| 17 | + "Development Status :: 3 - Alpha", |
| 18 | + "Intended Audience :: Developers", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | +] |
| 24 | +dependencies = [ |
| 25 | + "protobuf>=5.0", |
| 26 | + "grpcio>=1.64" |
| 27 | +] |
| 28 | + |
| 29 | +[project.optional-dependencies] |
| 30 | +dev = [ |
| 31 | + "grpcio-tools>=1.64", |
| 32 | + "pytest>=7.0", |
| 33 | + "pytest-cov>=4.0", |
| 34 | +] |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Homepage = "https://github.com/code0-tech/tucana" |
| 38 | +Repository = "https://github.com/code0-tech/tucana" |
| 39 | +Issues = "https://github.com/code0-tech/tucana/issues" |
| 40 | +Changelog = "https://github.com/code0-tech/tucana/releases" |
| 41 | + |
| 42 | +[tool.setuptools] |
| 43 | +package-dir = {"" = "src"} |
| 44 | + |
| 45 | +[tool.setuptools.packages.find] |
| 46 | +where = ["src"] |
| 47 | + |
| 48 | +[tool.pytest.ini_options] |
| 49 | +testpaths = ["tests"] |
| 50 | +python_files = "test_*.py" |
| 51 | + |
| 52 | +[tool.uv] |
| 53 | +managed = true |
| 54 | +dev-dependencies = [ |
| 55 | + "grpcio-tools>=1.64", |
| 56 | + "pytest>=7.0", |
| 57 | + "pytest-cov>=4.0", |
| 58 | +] |
| 59 | + |
0 commit comments