-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (40 loc) · 1.55 KB
/
setup.py
File metadata and controls
50 lines (40 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: latin-1 -*-
import sys
from setuptools import setup
"""
setup
~~~~~
Setup script for installation.
See README.md for installing procedure.
:copyright: Copyright 2023-2024 INRA-ECOSYS, see AUTHORS.
:license: CeCILL-C, see LICENSE for details.
**Acknowledgments**: The research leading these results has received funding through the
Investment for the Future programme managed by the Research National Agency
(BreedWheat project ANR-10-BTBR-03).
.. seealso:: 1st article et al.
"""
"""
Information about this versioned file:
$LastChangedBy$
$LastChangedDate$
$LastChangedRevision$
$URL$
$Id$
"""
if sys.version_info < (3, 9):
print('ERROR: Root_BRIDGES requires at least Python 3.9 to run.')
sys.exit(1)
setup(
name="Root_BRIDGES",
version="0.1.0",
packages=["root_bridges", "simulations", "test"],
include_package_data=True,
author="T.Grault, F.Rees, R.Barillot and C.Pradal",
author_email="tristan.gerault@inrae.fr, frederic.rees@inrae.fr, romain.barillot@inrae.fr, christophe.pradal@cirad.fr",
description="Root_BRIDGES is a model of root CNW physiology at root segment scale",
long_description="""TODO""",
license="CeCILL-C",
keywords="functional-structural plant model, wheat, uptake, rhizodeposition, trophic status, carbon, nitrogen, metabolism, remobilisation, source-sink relation, resource allocation",
url="https://github.com/GeraultTr/Root_BRIDGES",
download_url="https://github.com/GeraultTr/Root_BRIDGES.git"
)