Files
training-labs/labs/stacktrain/setup.py
Roger Luethi 075bee7f11 Python port of osbash
This is a pretty direct port of osbash to Python.

The entry point is st.py; use ./st.py --help for help.

osbash.sh should work as before.

Implements: blueprint labs-python-port
Change-Id: Ifcccc420d58cbe907ce29542e4200803fa39e134
2016-12-18 11:47:44 +00:00

20 lines
442 B
Python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'My Project',
'author': 'Roger Luethi',
'url': 'URL to get it at.',
'download_url': 'Where to download it.',
'author_email': 'rl@patchworkscience.org',
'version': '0.1',
'install_requires': ['pytest'],
'packages': ['NAME'],
'scripts': [],
'name': 'projectname'
}
setup(**config)