diff --git a/README.md b/README.md index 970f50a..a05cba5 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,6 @@ CDF (Continuous Data Framework) is an integrated framework designed to manage da 1. **Installation**: - (NOT YET PUBLISHED ON PYPI, INSTALLATION INSTRUCTIONS WILL BE UPDATED SOON) - CDF requires Python 3.9 or newer. Install CDF using pip: ```bash diff --git a/pyproject.toml b/pyproject.toml index f430c2d..c034532 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [project] -name = "cdf" +name = "python-cdf" version = "0.9.2" description = "A framework to manage data continuously" authors = [ @@ -27,16 +27,20 @@ requires-python = ">=3.9,<3.13" readme = "README.md" license.file = "LICENSE" +[tool.poetry] +packages = [{ include = "src" }] + [project.optional-dependencies] dev = [ + # "poetry @ git+https://github.com/radoering/poetry.git@pep621-support", "pytest>=7.4.3", "pytest-mock>=3.12.0", "pydoc-markdown>4", ] [build-system] -requires = ["hatchling"] -build-backend = "hatchling.build" +requires = ["poetry-core@ git+https://github.com/radoering/poetry-core.git@pep621-support"] +build-backend = "poetry.core.masonry.api" [tool.hatch.metadata] allow-direct-references = true