-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (31 loc) · 1.19 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Installation routine
use
python setupy.py install
to install library
"""
from setuptools import setup
setup(name = "rainforest",
description = "QPE python library by wod",
version = "1.0",
author = 'Daniel Wolfensberger - LTE EPFL/MeteoSwiss',
author_email = '[email protected]',
license = 'GPL-3.0',
packages = ['rainforest',
'rainforest/qpe',
'rainforest/common',
'rainforest/ml',
'rainforest/database'],
include_package_data = True,
install_requires=['numpy'],
zip_safe=False,
entry_points = {
'console_scripts':['rainforest_interface = rainforest.interface:main',
'qpe_compute = rainforest.qpe.qpe_compute:main',
'qpe_plot = rainforest.qpe.qpe_plot:main',
'qpe_evaluation = rainforest.qpe.qpe_evaluation:main',
'db_populate = rainforest.database.db_populate:main',
'rf_train = rainforest.ml.rf_train:main']}
)