source: pyson/setup.py@ 741

Last change on this file since 741 was 567, checked in by wouter, 16 months ago

#189 fixed what seemed a bug in JsonDeserialize. Pending tests with GeniusWeb

File size: 638 bytes
RevLine 
[238]1from setuptools import setup
[134]2
3setup(
[141]4 name='pyson',
[567]5 version='1.1.7',
[141]6 description='annotation mechanism for json serialization',
[451]7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/wiki/pyson',
[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',
[451]16 'Programming Language :: Python :: 3.9',
17 'Programming Language :: Python :: 3.10'
18
[134]19 ],
20)
Note: See TracBrowser for help on using the repository browser.