source: ANL2022/micro_agent/setup.py

Last change on this file was 75, checked in by wouter, 21 months ago

#6 added ANAC2022 parties

File size: 798 bytes
Line 
1'''
2Created on Apr 21, 2022
3
4@author: Dave de Jonge, IIIA-CSIC
5'''
6from setuptools import setup
7
8ver = '1.0.0'
9
10setup(
11 name='micro_agent',
12 author='Dave de Jonge',
13 version=ver,
14 description='Implementation of the MiCRO strategy for ANAC 2022. MiCRO is a very simple strategy that just proposes all possible bids of the domain one by one, in order of decreasing utility, as long as the opponent keeps making new proposals as well.',
15 author_email='davedejonge@iiia.csic.es',
16 install_requires=['geniusweb@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/93/geniuswebcore/dist/geniusweb-1.2.1.tar.gz'],
17 #packages=find_packages(),
18 packages = ['micro_agent'],
19 url='https://www.iiia.csic.es/~davedejonge',
20 py_modules=['party']
21)
Note: See TracBrowser for help on using the repository browser.