MedVQA / pyproject.toml
SushantGautam's picture
Update publish workflow to use 'build' package and adjust version in pyproject.toml
c195ae3
raw
history blame
411 Bytes
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "medvqa"
version = "0.12"
description = "Your project description here"
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
# Add your dependencies here
]
[project.scripts]
medvqa = "medvqa.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["*", "competitions/**/"]