Skip to content

Commit 075abc5

Browse files
fix: remove setuptools-scm dep, update license format, exclude tests from sdist
1 parent 8084385 commit 075abc5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
[build-system]
2-
requires = ["setuptools>=68.0", "setuptools-scm>=8.0"]
2+
requires = ["setuptools>=68.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gateframe"
77
version = "0.1.0"
88
description = "Behavioral validation for LLM outputs in production workflows."
99
readme = "README.md"
10-
license = {text = "MIT"}
10+
license = "MIT"
1111
requires-python = ">=3.10"
1212
keywords = ["llm", "validation", "behavioral", "workflow", "ai"]
1313
classifiers = [
1414
"Development Status :: 3 - Alpha",
1515
"Intended Audience :: Developers",
16-
"License :: OSI Approved :: MIT License",
1716
"Programming Language :: Python :: 3",
1817
"Programming Language :: Python :: 3.10",
1918
"Programming Language :: Python :: 3.11",
@@ -35,6 +34,7 @@ dev = [
3534

3635
[tool.setuptools.packages.find]
3736
include = ["gateframe*"]
37+
exclude = ["tests*"]
3838

3939
[tool.pytest.ini_options]
4040
testpaths = ["tests"]

0 commit comments

Comments
 (0)