source: pyson/setup.py@ 301

Last change on this file since 301 was 301, checked in by wouter, 3 years ago

#100 and fix uri version to 2.0.0 .........

File size: 576 bytes
RevLine 
[238]1from setuptools import setup
[134]2
3setup(
[141]4 name='pyson',
[298]5 version='1.1.0',
[141]6 description='annotation mechanism for json serialization',
[135]7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/packson',
[134]8 author='W.Pasman',
9 #packages={'src':'*'},
[238]10 packages = ['pyson'],
[141]11 package_data = { 'pyson': ['py.typed'] },
[301]12 install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/297/uri/dist/uri-2.0.0.tar.gz"],
[134]13
14 classifiers=[
[192]15 'Programming Language :: Python :: 3.8',
16 'Programming Language :: Python :: 3.9'
[134]17 ],
18)
Note: See TracBrowser for help on using the repository browser.