source: pyson/setup.py@ 1492

Last change on this file since 1492 was 1478, checked in by wouter, 6 days ago

#440 update pyson to use latest uri

File size: 564 bytes
Line 
1from setuptools import setup
2
3setup(
4 name='pyson',
5 version='1.3.2',
6 description='annotation mechanism for json serialization',
7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/wiki/pyson',
8 author='W.Pasman',
9 #packages={'src':'*'},
10 packages = ['pyson'],
11 package_data = { 'pyson': ['py.typed'] },
12 install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1477/uri/dist/uri-2.0.1.tar.gz"],
13 python_requires=">=3.8, <3.12",
14 classifiers=[
15 'Programming Language :: Python :: 3'
16 ],
17)
Note: See TracBrowser for help on using the repository browser.