source: pyson/setup.py@ 490

Last change on this file since 490 was 490, checked in by wouter, 17 months ago

#152 changed @JsonDeserialize deserialization argument from str to type. It now takes the class as argument. This is attempt to solve some resolvation issues

File size: 638 bytes
RevLine 
[238]1from setuptools import setup
[134]2
3setup(
[141]4 name='pyson',
[490]5 version='1.1.6',
[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.