Rev | Line | |
---|
[134] | 1 | from setuptools import setup, find_packages
|
---|
| 2 |
|
---|
| 3 | setup(
|
---|
[141] | 4 | name='pyson',
|
---|
[134] | 5 | version='1.0.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':'*'},
|
---|
| 10 | packages = find_packages(),
|
---|
[141] | 11 | package_data = { 'pyson': ['py.typed'] },
|
---|
[163] | 12 | install_requires=[ "uri==2.0.1"],
|
---|
[134] | 13 |
|
---|
| 14 | classifiers=[
|
---|
| 15 | 'Programming Language :: Python :: 3',
|
---|
| 16 | ],
|
---|
| 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.