init
This commit is contained in:
36
pyproject.toml
Normal file
36
pyproject.toml
Normal file
@@ -0,0 +1,36 @@
|
||||
[tool.poetry]
|
||||
name = "new-premier"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["lixulun <lixulun@126.com>"]
|
||||
readme = "README.md"
|
||||
packages = [{ include = "premier", from = "src" }]
|
||||
|
||||
[tool.poetry.scripts]
|
||||
manage = "premier.manage:main"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.12"
|
||||
django = "^5.0.4"
|
||||
djangorestframework = "^3.15.1"
|
||||
environs = { version = "^11.0.0", extras = ["django"] }
|
||||
mysqlclient = "^2.2.4"
|
||||
|
||||
|
||||
[[tool.poetry.source]]
|
||||
name = "aliyun"
|
||||
url = "http://mirrors.aliyun.com/pypi/simple/"
|
||||
priority = "primary"
|
||||
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
ruff = "^0.3.7"
|
||||
pre-commit = "^3.7.0"
|
||||
invoke = "^2.2.0"
|
||||
|
||||
[tool.ruff]
|
||||
lint.extend-select = ["I"]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
Reference in New Issue
Block a user