|
| 1 | +[build-system] |
| 2 | +requires = ["uv_build >= 0.7.19, <0.9.0"] |
| 3 | +build-backend = "uv_build" |
| 4 | + |
1 | 5 | [project] |
2 | | -name = "pysqlit" |
3 | | -version = "0.2.2" |
4 | | -description = "Python版sqlite" |
5 | | -readme = "README.md" |
6 | | -requires-python = ">=3.11" |
| 6 | +name = "PySqlit" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Python版sqlite引擎" |
| 9 | +authors = [ |
| 10 | + {name = "Python51888"}, |
| 11 | +] |
| 12 | +readme = "README.md" |
| 13 | +requires-python = ">=3.11" |
| 14 | +license = {text = "MIT"} |
| 15 | +keywords = ["pysqlite", "sqlite", "sqlite3", "pysqlit", "PySqlit","PySqlite"] |
7 | 16 | dependencies = [ |
8 | | - "black>=22.0", |
9 | | - "fastmcp>=2.12.2", |
10 | | - "mypy>=1.0", |
11 | | - "pytest>=7.0", |
12 | | - "pytest-cov>=4.0", |
| 17 | + "black>=22.0", |
| 18 | + "fastmcp>=2.12.2", |
| 19 | + "mypy>=1.0", |
| 20 | + "pytest>=7.0", |
| 21 | + "pytest-cov>=4.0", |
13 | 22 | ] |
| 23 | +classifiers = [ |
| 24 | + # 开发状态 |
| 25 | + Development Status :: 5 - Production/Stable", |
| 26 | + # Python支持 |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + # 许可证 |
| 31 | + "License :: OSI Approved :: MIT License", |
| 32 | + # 操作系统 |
| 33 | + "Operating System :: Microsoft :: Windows", |
| 34 | + # 项目类型 |
| 35 | + "Intended Audience :: Developers", |
| 36 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 37 | + "Typing :: Typed", |
| 38 | +] |
| 39 | +[project.urls] |
| 40 | +Homepage = "https://github.com/Python51888/PySqlit" |
| 41 | +Documentation = "https://zread.ai/Python51888/PySqlit" |
| 42 | +Repository = "https://github.com/Python51888/PySqlit" |
14 | 43 |
|
15 | | -[tool.setuptools.packages.find] |
16 | | -include = ["pysqlit*"] |
| 44 | +[tool.uv.version] |
| 45 | +source = "file" |
| 46 | +path = [ |
| 47 | + "PySqlit/pysqlit/__init__.py", |
| 48 | + "PySqlit/__version__.py" |
| 49 | +] |
| 50 | +pattern = "__version__ = \"{version}\"" |
0 commit comments