source: pyrunner/helloworld/setup.py@ 1251

Last change on this file since 1251 was 353, checked in by wouter, 2 years ago

#110 added small python helloworld example. Compiled it to targz and added as test.

File size: 469 bytes
RevLine 
[353]1from setuptools import setup, find_packages
2
3ver = '1.0.0'
4
5setup(
6 name='helloworld',
7 version=ver,
8 description='HelloWorld program for testing pyrunner',
9 url='https://tracinsy.ewi.tudelft.nl/pubtrac/Utilities',
10 author='W.Pasman',
11 # packages={'src':'*'},
12 py_modules=['helloworld'],
13 install_requires=[
14 ],
15
16 classifiers=[
17 'Programming Language :: Python :: 3.8',
18 'Programming Language :: Python :: 3.9'
19 ],
20)
Note: See TracBrowser for help on using the repository browser.