Last change
on this file since 81 was 81, checked in by Bart Vastenhouw, 3 years ago |
Added python timedependent parties (conceder, hardliner, etc)
|
File size:
602 bytes
|
Line | |
---|
1 | from setuptools import setup, find_packages
|
---|
2 |
|
---|
3 | setup(
|
---|
4 | name='boulware',
|
---|
5 | version='1.1.3',
|
---|
6 | description='A python3 party that places bids with monotonically decreasing utility',
|
---|
7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
|
---|
8 | author='W.Pasman',
|
---|
9 | packages = find_packages(exclude=["test", "test.*","test.*.*"]),
|
---|
10 | package_data = { 'boulware': ['py.typed'] },
|
---|
11 | install_requires=[ "timedependentparty@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/80/exampleparties/timedependentparty/dist/timedependentparty-1.1.3.tar.gz"],
|
---|
12 | py_modules=['party']
|
---|
13 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.