diff --git a/poetry.lock b/poetry.lock index 2c522f5..3d730c7 100644 --- a/poetry.lock +++ b/poetry.lock @@ -624,4 +624,4 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess [metadata] lock-version = "2.1" python-versions = "^3.10" -content-hash = "01c7875ce5f28aeab63cddae7b01ab14686bf0bd331b05cac98fd2c3a320f950" +content-hash = "3f67a3a2bb1c324871fb9b9851e4a8eb275eb91c53d372c52edb799e01858dd3" diff --git a/pyproject.toml b/pyproject.toml index 515e38c..539dc0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,24 +1,29 @@ -[tool.poetry] +[project] name = "my_python_project" version = "0.1.0" description = "A best-in-class Python package template." -authors = ["CoReason, Inc. "] +authors = [ + {name = "CoReason, Inc.", email = "gowtham.rao@coreason.ai"}, +] readme = "README.md" -license = "Prosperity-3.0.0" -homepage = "https://github.com/[USERNAME]/[REPO_NAME]" -repository = "https://github.com/[USERNAME]/[REPO_NAME]" -documentation = "https://github.com/[USERNAME]/[REPO_NAME]" +license = "LicenseRef-Proprietary" +license-files = ["LICENSE"] keywords = ["template", "poetry", "python"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", - "License :: Other/Proprietary License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] +requires-python = ">=3.10" + +[project.urls] +Homepage = "https://github.com/[USERNAME]/[REPO_NAME]" +Repository = "https://github.com/[USERNAME]/[REPO_NAME]" +Documentation = "https://github.com/[USERNAME]/[REPO_NAME]" [tool.poetry.dependencies] python = "^3.10"