From fe18021321c9aed3ddcb0a8ea32c56366f3ab230 Mon Sep 17 00:00:00 2001 From: drodarie Date: Sat, 16 Nov 2024 11:07:06 +0100 Subject: [PATCH] fix: Revert to toml setuptool format as flit does not allow empty module. --- README.md | 2 +- pyproject.toml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4ec6f1e..c16a23f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://github.com/dbbs-lab/bsb/actions/workflows/build.yml/badge.svg)](https://github.com/dbbs-lab/bsb/actions/workflows/build.yml) +[![Build Status](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml/badge.svg)](https://github.com/dbbs-lab/bsb/actions/workflows/main.yml) # Brain Scaffold Builder suite Developed by the Department of Brain and Behavioral Sciences at the University of Pavia, the Brain Scaffold Builder (BSB) is a component framework for neural modelling, which focuses on component diff --git a/pyproject.toml b/pyproject.toml index c559ec3..ab4c201 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] -requires = ["flit_core >=3.2,<4"] -build-backend = "flit_core.buildapi" +requires = ["setuptools"] +build-backend = "setuptools.build_meta" [project] name = "bsb" @@ -11,7 +11,7 @@ readme = "README.md" license = { file = "LICENSE" } classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"] requires-python = ">=3.9" -dynamic = ["version"] +version = "4.3.0" dependencies = [ "bsb-core~=4.5.3", "bsb-json~=4.2.1", @@ -31,6 +31,8 @@ Documentation = "https://bsb.readthedocs.io/" "Bug Tracker" = "https://github.com/dbbs-lab/bsb/issues/" "Source Code" = "https://github.com/dbbs-lab/bsb/" +[tool.setuptools] +packages = [] [tool.bumpversion] current_version = "4.3.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)"