🔧 Add `.idea/` to .gitignore and introduce new project dependencies/files including `.python-version`, `pyproject.toml`, and `src/` directory.
15 lines
315 B
TOML
15 lines
315 B
TOML
[project]
|
|
name = "py-common-lib"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Hatter Jiang", email = "jht5945@gmail.com" }
|
|
]
|
|
requires-python = ">=3.12"
|
|
dependencies = []
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.6,<0.12.0"]
|
|
build-backend = "uv_build"
|