diff --git a/pyproject.toml b/pyproject.toml index cbc7bbc..960c0fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,24 +1,24 @@ [build-system] -requires = ["setuptools>=61.0"] +requires = ["setuptools>=61.0.0"] build-backend = "setuptools.build_meta" -[tool.setuptools.packages.find] -where = ["src"] - - [project] name = "config_manager" version = "1.0.2" -description = "Basic application with configuration and logging features." +description = "Config manager for building applications" authors = [ { name = "Aleksei Zosimov", email = "lesha.spb@gmail.com" } ] +readme = "README.md" +requires-python = ">=3.8" dependencies = [ "PyYAML>=6.0", ] -[project.optional-dependencies] -dev = [ - "pytest", - # другие dev-зависимости -] \ No newline at end of file +[project.urls] +Homepage = "https://git.lesha.spb.ru/alex/config_manager" +Documentation = "https://git.lesha.spb.ru/alex/config_manager" +Repository = "https://git.lesha.spb.ru/alex/config_manager" + +[tool.setuptools.packages.find] +where = ["src"] \ No newline at end of file