source: exampleparties/stupidparty/setup.py@ 61

Last change on this file since 61 was 60, checked in by Wouter Pasman, 3 years ago

#44 update parties to use public dist

File size: 497 bytes
Line 
1from setuptools import setup
2
3setup(
4 name='stupidparty',
5 version='1.0.0',
6 description='A example python3 party module',
7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb',
8 author='W.Pasman',
9 packages=['stupidparty'],
10 install_requires=[ "geniusweb@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/59/geniuswebcore/dist/geniusweb-1.0.0.tar.gz"],
11 py_modules=['party'],
12
13 classifiers=[
14 'Programming Language :: Python :: 3.8',
15 ],
16)
Note: See TracBrowser for help on using the repository browser.