-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.29 KB
/
setup.py
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
# -*- python -*-
#
# Copyright CIRAD - INRAE
#
# File author(s):
#
# File contributor(s):
#
# Distributed under the Cecill-C License.
# See accompanying file LICENSE.txt or copy at
# http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html
#
# OpenAlea WebSite : http://openalea.gforge.inria.fr
#
# ==============================================================================
"""
"""
# ==============================================================================
from setuptools import setup, find_packages
# ==============================================================================
setup(
name="gafam",
version="1.0.0b0",
description="Growing AgroForestry with Apple in Mediterranean climate",
long_description="Analysis of Growing AgroForestry with Apple in Mediterranean climate",
author="* Christophe Pradal\n"
"* Francesco Reyes\n",
author_email="* christophe.pradal@cirad.fr\n",
maintainer="",
maintainer_email="",
url="https://github.com/openalea/gafam",
license="Cecill-C",
keywords='openalea, apple tree, MTG, analysis, agroforestery',
# package installation
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"": ["*.txt"]},
zip_safe=False,
)