diff --git a/.gitignore b/.gitignore index 4934ad1..ce19e6c 100644 --- a/.gitignore +++ b/.gitignore @@ -193,3 +193,4 @@ pyrightconfig.json .ionide # End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode +*.ipynb diff --git a/README.md b/README.md index 00a9181..5504477 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# After_Detailer +# After Detailer diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..4148d27 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "adetailer" +version = "23.4.0.dev0" +description = "An object detection and auto-mask extension for stable diffusion webui." +authors = [ + {name = "dowon", email = "ks2515@naver.com"}, +] +requires-python = ">=3.8,<3.12" +readme = "README.md" +license = {text = "AGPL-3.0"} + +[project.urls] +repository = "https://github.com/Bing-su/adetailer" + +[tool.isort] +profile = "black" +known_first_party = ["modules", "launch"] + +[tool.ruff] +select = ["A", "B", "C4", "E", "F", "I001", "ISC", "N", "PIE", "PT", "RET", "SIM", "UP", "W"] +ignore = ["B008", "B905", "E501"] +unfixable = ["F401"] + +[tool.ruff.isort] +known-first-party = ["modules", "launch"] \ No newline at end of file