source: pyson/setup.py@ 210

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

#82 fixed compatibility with python 3.9. pyson now works both with 3.8 and 3.9.

File size: 598 bytes
RevLine 
[134]1from setuptools import setup, find_packages
2
3setup(
[141]4 name='pyson',
[134]5 version='1.0.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':'*'},
10 packages = find_packages(),
[141]11 package_data = { 'pyson': ['py.typed'] },
[188]12 install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/33/dist/uri-3.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.