Skip to content

Commit

Permalink
Merge pull request #34 from TissueEngineeringLab/hotfix/fix_pyproject…
Browse files Browse the repository at this point in the history
….toml

Fixes in `pyproject.toml`
  • Loading branch information
WeisLeDocto authored Jan 5, 2024
2 parents ea51e78 + 5dfec3e commit e826b84
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
[build-system]
requires = [
"setuptools >= 61.0",
"screeninfo",
"Pillow",
"opencv-python",
"XlsxWriter",
"DeepCell"
]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "myofinder"
dynamic = ["version", "readme", "dependencies"]
dynamic = ["readme", "dependencies"]
version = "1.0.7"
description = "Automatic calculation of the fusion index by AI segmentation"
license = {file = "LICENSE"}
keywords = ["segmentation", "fusion index", "automation", "muscle culture"]
Expand Down Expand Up @@ -41,19 +35,16 @@ Issues = "https://github.com/TissueEngineeringLab/MyoFInDer/issues"
Download = "https://pypi.org/project/myofinder/#files"

[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
include-package-data = false

[tool.setuptools.dynamic]
version = {attr = "myofinder.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}

[tool.setuptools.package-dir]
crappy = "src/myofinder"

[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
include = ["myofinder*"]
exclude = []
namespaces = false

Expand Down

0 comments on commit e826b84

Please sign in to comment.