from setuptools import setup, find_packages setup( name='conceder', version='1.1.4', 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={ 'conceder': ['py.typed'] }, install_requires=[ "timedependentparty@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/83/exampleparties/timedependentparty/dist/timedependentparty-1.1.4.tar.gz"], py_modules=['party'] )