-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
55 lines (41 loc) · 1.46 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
54
55
# -*- coding: latin-1 -*-
"""
setup
~~~~~
Setup script for installation.
See README.md for installing procedure.
:copyright: TODO.
:license: Cecill-CeCILL-C.
.. seealso:: Verdenal et al, 2008.
"""
"""
Information about this versioned file:
$LastChangedBy: cchambon $
$LastChangedDate: 2017-09-14 10:38:00 +0200 (jeu., 14 sept. 2017) $
$LastChangedRevision: 21 $
$URL: https://subversion.renater.fr/respi-wheat/trunk/setup.py $
$Id: setup.py 21 2017-09-14 08:38:00Z cchambon $
"""
import ez_setup
import pkg_resources
ez_setup.use_setuptools()
import sys, os
from setuptools import setup, find_packages
import lgrass
pkg_resources.require('numpy>=1.11.0', 'pandas>=0.18.0', 'OpenAlea.Lpy', 'OpenAlea.PlantGL', 'OpenAlea.Mtg')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "L-grass",
version=lgrass.__version__,
packages = find_packages(),
include_package_data = True,
author = "A. Verdenal, D. Combes, V. Migault",
author_email = "[email protected], [email protected]",
description = "A model of rye grass morphogenesis",
long_description = read('README.md'),
license = "CeCILL-C",
keywords = "functional-structural plant model, rye-grass, morphogenesis, self regulated architecture, leaf, roots ",
url = "https://sourcesup.renater.fr/projects/lgrass/",
download_url = "",
)