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