diff --git a/.gitignore b/.gitignore index 845e3a7..3dcb585 100644 --- a/.gitignore +++ b/.gitignore @@ -60,4 +60,5 @@ venv_*/ venv-*/ # IDE config -.vscode \ No newline at end of file +.vscode +.idea diff --git a/makepackage/write_pyproject.py b/makepackage/write_pyproject.py index 700fe83..22156d1 100644 --- a/makepackage/write_pyproject.py +++ b/makepackage/write_pyproject.py @@ -34,7 +34,7 @@ def write_pyproject(path: Path, package_name: str, CLI: bool) -> None: } config["project.optional-dependencies"] = { - "dev": ["wheel", "black", "pytest", "mypy", "setuptools"] + "dev": ["wheel", "black", "pytest", "mypy", "setuptools", "build"] } with open(path / "pyproject.toml", "w") as f: diff --git a/pyproject.toml b/pyproject.toml index 787d31c..3b3900a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "makepackage" -version = "0.2.2" +version = "0.2.3" authors = [ { name = "Nyggus", email = "nyggus@gmail.com" }, { name = "Patrick Boateng", email = "boatengpato.pb@gmail.com" },