-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
14 lines (13 loc) · 968 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup, find_packages
setup(name='ptreeopt',
version='1.0.1',
author='Jonathan Herman, Matteo Guiliani',
author_email='[email protected]',
url='https://github.com/jdherman/ptreeopt',
description='A heuristic policy search model designed for the conrol of dynamic systems.',
long_description = 'A heuristic policy search model designed for the control of dynamic systems. The model uses genetic programming to develop binary trees relating observed indicator variables to real-valued or discrete actions. A simulation model serves as optimization models objective function. Citation: Herman, J.D. and Giuliani, M. Policy tree optimization for threshold-based water resources management over multiple timescales, Environmental Modelling and Software, 99, 39-51, 2018.',
packages=find_packages(),
# py_modules = ['ptreeopt'],
# package_dir = {'': 'ptreeopt'},
license = 'MIT',
)