source: unitpy/setup.py@ 741

Last change on this file since 741 was 714, checked in by wouter, 11 months ago

#245 avoid relying on parent implementing assertTrue etc

File size: 435 bytes
RevLine 
[286]1from setuptools import setup
2
3setup(
[290]4 name='unitpy',
[714]5 version='1.0.1',
[290]6 description='Tool supporting unittests',
7 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities',
[286]8 author='W.Pasman',
9 #packages={'src':'*'},
[290]10 packages = ['unitpy'],
[294]11 package_data = { 'unitpy': ['py.typed'] },
[286]12 install_requires=[],
13 classifiers=[
14 'Programming Language :: Python :: 3',
15 ],
[290]16 py_modules=['unitpy']
[286]17)
Note: See TracBrowser for help on using the repository browser.