
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
20 lines
442 B
Python
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)
|