mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
Replace deprecated license table format with modern license-files array
in both main package and codeflash-benchmark subpackage. This resolves
the setuptools deprecation warning about TOML table license format.
Changes:
- Use license-files = ["LICENSE"] instead of license = {text = "BSL-1.1"}
- Add LICENSE file to root directory
- Add LICENSE and README.md to codeflash-benchmark/
32 lines
833 B
TOML
32 lines
833 B
TOML
[project]
|
|
name = "codeflash-benchmark"
|
|
version = "0.2.0"
|
|
description = "Pytest benchmarking plugin for codeflash.ai - automatic code performance optimization"
|
|
authors = [{ name = "CodeFlash Inc.", email = "contact@codeflash.ai" }]
|
|
requires-python = ">=3.9"
|
|
readme = "README.md"
|
|
license-files = ["LICENSE"]
|
|
keywords = [
|
|
"codeflash",
|
|
"benchmark",
|
|
"pytest",
|
|
"performance",
|
|
"testing",
|
|
]
|
|
dependencies = [
|
|
"pytest>=7.0.0,!=8.3.4",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://codeflash.ai"
|
|
Repository = "https://github.com/codeflash-ai/codeflash-benchmark"
|
|
|
|
[project.entry-points.pytest11]
|
|
codeflash-benchmark = "codeflash_benchmark.plugin"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["codeflash_benchmark"]
|