source: pyson/setup.py@ 1271

Last change on this file since 1271 was 1214, checked in by wouter, 2 weeks ago

#380 Dict -> Dict[Any,Any]

File size: 563 bytes
Line 
1from setuptools import setup
2
3setup(
4 name='pyson',
5 version='1.2.4',
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/297/uri/dist/uri-2.0.0.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.