-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Martin PELLEMOINE
committed
Jun 12, 2024
1 parent
739e625
commit 436d211
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |