Last change
on this file since 232 was 231, checked in by wouter, 4 years ago |
refactoring. Trying to get this working
|
File size:
548 bytes
|
Rev | Line | |
---|
[231] | 1 | from setuptools import setup, find_packages
|
---|
[229] | 2 |
|
---|
[231] | 3 | setup(
|
---|
| 4 | name='pyson',
|
---|
| 5 | version='1.0.0',
|
---|
| 6 | description='annotation mechanism for json serialization',
|
---|
| 7 | url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities/packson',
|
---|
| 8 | author='W.Pasman',
|
---|
| 9 | #packages={'src':'*'},
|
---|
| 10 | packages = find_packages(),
|
---|
| 11 | package_data = { 'pyson': ['py.typed'] },
|
---|
| 12 | install_requires=[ "uri@https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebPython/export/33/dist/uri-3.0.0.tar.gz"],
|
---|
[229] | 13 |
|
---|
[230] | 14 | classifiers=[
|
---|
[229] | 15 | 'Programming Language :: Python :: 3',
|
---|
[230] | 16 | ],
|
---|
[231] | 17 | ) |
---|
Note:
See
TracBrowser
for help on using the repository browser.