Rev | Line | |
---|
[238] | 1 | from setuptools import setup
|
---|
[134] | 2 |
|
---|
| 3 | setup(
|
---|
[141] | 4 | name='pyson',
|
---|
[298] | 5 | version='1.1.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':'*'},
|
---|
[238] | 10 | packages = ['pyson'],
|
---|
[141] | 11 | package_data = { 'pyson': ['py.typed'] },
|
---|
[301] | 12 | install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/export/297/uri/dist/uri-2.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.