from setuptools import setup, find_packages setup( name='timedependentparty', version='1.1.3', description='A python3 party that places bids with monotonically decreasing utility', url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb', author='W.Pasman', packages = find_packages(exclude=["test", "test.*","test.*.*"]), package_data = { 'timedependentparty': ['py.typed'] }, install_requires=[ "geniusweb@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/79/geniuswebcore/dist/geniusweb-1.1.3.tar.gz"], py_modules=['party'] )