Last change
on this file since 1498 was 1496, checked in by wouter, 33 hours ago |
#443 added auto-casting between Number types, typically needed if all is parsed as Decimal to avoid rounding issues upfront.
|
File size:
564 bytes
|
Rev | Line | |
---|
[238] | 1 | from setuptools import setup
|
---|
[134] | 2 |
|
---|
| 3 | setup(
|
---|
[141] | 4 | name='pyson',
|
---|
[1496] | 5 | version='1.4.0',
|
---|
[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'] },
|
---|
[1478] | 12 | install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/1477/uri/dist/uri-2.0.1.tar.gz"],
|
---|
[1109] | 13 | python_requires=">=3.8, <3.12",
|
---|
[134] | 14 | classifiers=[
|
---|
[1108] | 15 | 'Programming Language :: Python :: 3'
|
---|
[134] | 16 | ],
|
---|
| 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.