source: pyson/setup.py@ 1102

Last change on this file since 1102 was 1080, checked in by wouter, 2 months ago

#359 fixed @JsonSubTypes inheritance

File size: 638 bytes
Line 
1from setuptools import setup
2
3setup(
4 name='pyson',
5 version='1.2.1',
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
14 classifiers=[
15 'Programming Language :: Python :: 3.8',
16 'Programming Language :: Python :: 3.9',
17 'Programming Language :: Python :: 3.10'
18
19 ],
20)
Note: See TracBrowser for help on using the repository browser.