-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
# -*- 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="openalea.epymix",
version="1.1.1",
description="Epidemic dilution and barrier factors in Mixture crops ",
long_description="A Python Model to study Epidemic dilution and barrier factors in Mixture crops ",
author="* Sebastien Levionnois\n"
"* Christian Fournier\n"
"* Marc Labadie\n"
"* Christophe Pradal\n"
"* Corinne Robert\n",
author_email="* [email protected]\n"
"* [email protected]\n"
"* [email protected]\n",
maintainer="",
maintainer_email="",
url="https://github.com/openalea/epymix",
license="Cecill-C",
keywords='openalea, wheat, epidemiology, desease, septoria, rust, crop-mixture',
# package installation
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"": ["*.txt"]},
zip_safe=False,
setup_requires = ['openalea.deploy'],
entry_points = {
"wralea": ["epymix = epymix.wralea",
"demo = epymix.wralea.demo"]},
)