You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
608 B
19 lines
608 B
from setuptools import setup |
|
|
|
from os import path |
|
this_directory = path.abspath(path.dirname(__file__)) |
|
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
|
long_description = f.read() |
|
|
|
setup(name='ecssh', |
|
version='2', |
|
description='accessing aws ecs instances', |
|
long_description=long_description, |
|
long_description_content_type='text/markdown', |
|
url='https://git.osuv.de/m/ecssh', |
|
author='Markus Bergholz', |
|
author_email='markuman@gmail.com ', |
|
license='WTFPL', |
|
packages=['ecssh'], |
|
scripts=['bin/ecssh'], |
|
zip_safe=True)
|
|
|