source: exampleparties/hardliner/setup.py@ 88

Last change on this file since 88 was 88, checked in by Bart Vastenhouw, 2 years ago

Added python SimpleRunner GUI

File size: 615 bytes
Line 
1from setuptools import setup, find_packages
2
3ver = '1.2.0'
4
5setup(
6 name='hardliner',
7 version=ver,
8 description='A python3 party that places bids with monotonically decreasing utility',
9 url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
10 author='W.Pasman',
11 packages=find_packages(exclude=["test", "test.*", "test.*.*"]),
12 package_data={ 'hardliner': ['py.typed'] },
13 install_requires=[ "timedependentparty@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/87/exampleparties/timedependentparty/dist/timedependentparty-" + ver + ".tar.gz"],
14 py_modules=['party']
15)
Note: See TracBrowser for help on using the repository browser.