Last change
on this file was 100, checked in by ruud, 20 months ago |
python installs also wheel to avoid error messages
|
File size:
595 bytes
|
Line | |
---|
1 | from setuptools import setup, find_packages
|
---|
2 |
|
---|
3 | ver = '1.2.1'
|
---|
4 |
|
---|
5 | setup(
|
---|
6 | name='timedependentparty',
|
---|
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={ 'timedependentparty': ['py.typed'] },
|
---|
13 | install_requires=[ "geniusweb@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/93/geniuswebcore/dist/geniusweb-" + ver + ".tar.gz"],
|
---|
14 | py_modules=['party']
|
---|
15 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.