Skip to content

Commit

Permalink
add pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin PELLEMOINE committed Jun 12, 2024
1 parent 739e625 commit 436d211
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "openalea.mtg"
version = "0.1.0" # Remplacer par la version réelle
description = "Multiscale Tree Graph datastructure and interfaces"
readme = "README.rst"
authors = [
{ name = "Christophe Pradal", email = "christophe.pradal@cirad.fr" }
]
license = { text = "CeCILL-C" }
keywords = ["OpenAlea", "MTG", "Plant Architecture", "Tree Graph"]
dependencies = []

[project.urls]
homepage = "http://github.com/openalea/mtg"

[tool.setuptools]
packages = ["find_namespace:src"]
namespace_packages = ["openalea"]
package_dir = {"" = "src"}

[tool.setuptools.dynamic]
version = {file = "src/openalea/mtg/version.py"}

[tool.setuptools.entry-points.wralea]
mtg = "openalea.mtg_wralea"

0 comments on commit 436d211

Please sign in to comment.