Change to uv
This commit is contained in:
@@ -1,21 +1,32 @@
|
|||||||
[tool.poetry]
|
[project]
|
||||||
name = "project_euler"
|
name = "project-euler"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["daviddoji <daviddoji@pm.me>"]
|
authors = [
|
||||||
|
{ name = "David Doblas Jiménez", email = "daviddoji@pm.me" }
|
||||||
|
]
|
||||||
|
requires-python = ">=3.14"
|
||||||
|
dependencies = [
|
||||||
|
"pytablewriter>=0.64.1,<0.65.0",
|
||||||
|
"sympy>=1.12,<2.0",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[dependency-groups]
|
||||||
python = "^3.9"
|
dev = [
|
||||||
pytablewriter = "^0.64.1"
|
"pre-commit>=2.16.0,<3.0.0",
|
||||||
sympy = "^1.12"
|
"flake8>=4.0.1,<5.0.0",
|
||||||
|
"mypy>=0.920,<1.0.0",
|
||||||
[tool.poetry.dev-dependencies]
|
"isort>=5.10.1,<6.0.0",
|
||||||
pre-commit = "^2.16.0"
|
"black>=21.12b0,<22.0",
|
||||||
flake8 = "^4.0.1"
|
]
|
||||||
mypy = "^0.920"
|
|
||||||
isort = "^5.10.1"
|
|
||||||
black = "^21.12b0"
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["setuptools>=68", "wheel"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
|
[tool.setuptools]
|
||||||
|
package-dir = {"" = "src"}
|
||||||
|
|
||||||
|
[tool.setuptools.packages.find]
|
||||||
|
where = ["src"]
|
||||||
|
include = ["project_euler_python*"]
|
||||||
|
|||||||
Reference in New Issue
Block a user