diff options
| author | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-03-17 20:55:11 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan-sebastian.tuomi@aalto.fi> | 2016-03-17 23:02:34 +0200 |
| commit | b6dc3ba88e5ef0a7e4509c88665372cb04a36f06 (patch) | |
| tree | 11649dec1e48377571a98edea0a9fdf0b2fcb377 /src/python-sshmgr/setup.py | |
| parent | ddbf8a86cf4ef071f289aceda1035818948d2292 (diff) | |
Arch packaging
Diffstat (limited to 'src/python-sshmgr/setup.py')
| -rw-r--r-- | src/python-sshmgr/setup.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/python-sshmgr/setup.py b/src/python-sshmgr/setup.py new file mode 100644 index 0000000..2889e9b --- /dev/null +++ b/src/python-sshmgr/setup.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup(name='sshmgr', + version='0.1', + description='', + author='Jan Tuomi', + author_email='jan-sebastian.tuomi@aalto.fi', + url='', + packages=['sshmgr', 'sshmgr.utils'], + entry_points= {'console_scripts': [ + 'sshmgr = sshmgr.manager:start', + ], + }, +) |
