-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (48 loc) · 1.46 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from os.path import abspath, dirname, join
from setuptools import setup
# Read the README markdown data from README.md
with open(abspath(join(dirname(__file__), 'README.md')), 'rb') as readmeFile:
__readme__ = readmeFile.read().decode('utf-8')
setup(
name='docker-shell',
version='0.0.9',
description='Docker Interactive Shell Runner',
long_description=__readme__,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Environment :: Console'
],
keywords='docker interactive console terminal',
url='http://github.com/adamrehn/docker-shell',
author='Adam Rehn',
author_email='[email protected]',
license='MIT',
packages=['docker_shell'],
zip_safe=True,
python_requires = '>=3.5',
install_requires = [
'docker>=4.0.0',
'packaging>=19.1',
'setuptools>=38.6.0',
'twine>=1.11.0',
'wheel>=0.31.0'
],
entry_points = {
'console_scripts': [
'docker-shell=docker_shell.entrypoints:main',
'dbash=docker_shell.entrypoints:bash',
'dsh=docker_shell.entrypoints:sh',
'dzsh=docker_shell.entrypoints:zsh',
'dcmd=docker_shell.entrypoints:cmd',
'dps=docker_shell.entrypoints:powershell',
'dpowershell=docker_shell.entrypoints:powershell',
'dpwsh=docker_shell.entrypoints:pwsh'
]
}
)