source: uri/setup.py@ 249

Last change on this file since 249 was 237, checked in by wouter, 4 years ago

fixed setup.py

File size: 433 bytes
RevLine 
[237]1from setuptools import setup
[229]2
[231]3setup(
[235]4 name='uri',
[231]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':'*'},
[235]10 packages = ['rfc3986'],
11 package_data = { },
12 install_requires=[],
[230]13 classifiers=[
[229]14 'Programming Language :: Python :: 3',
[236]15 ],
16 py_modules=['uri']
[231]17)
Note: See TracBrowser for help on using the repository browser.