-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·41 lines (30 loc) · 1.23 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
# -*- coding: latin-1 -*-
import ez_setup
import sys
from setuptools import setup, find_packages
import fspmwheat
"""
Notes:
- use setup.py develop when tracking in-development code
- when removing modules or data files from the project, run setup.py clean --all and delete any obsolete .pyc or .pyo.
"""
ez_setup.use_setuptools()
if sys.version_info < (2, 7):
print('ERROR: CN-Wheat requires at least Python 2.7 to run.')
sys.exit(1)
setup(
name="FSPM-Wheat",
version=fspmwheat.__version__,
packages=find_packages(),
# install_requires=['numpy>=1.7.2', 'pandas>=0.14.0', 'scipy>=0.12.1', 'matplotlib>=1.3.1'],
include_package_data=True,
# metadata for upload to PyPI
author="C.Chambon, M.Gauthier, R.Barillot",
author_email="camille.chambon@inra.fr, romain.barillot@inra.fr",
description="A Functional Structural Plant Model of Wheat",
long_description="An example of model coupling for building a Functional Structural Plant Model of Wheat",
license="CeCILL-C",
keywords="functional-structural plant model, wheat, metabolism, resource acquisition and allocation, model coupling, OpenAlea, MTG",
url="https://sourcesup.renater.fr/projects/fspm-wheat/",
download_url="", # TODO
)