-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (27 loc) · 974 Bytes
/
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
from setuptools import setup
setup(
name='xonsh-docker-tabcomplete',
version='0.1.4',
license='MIT',
url='https://github.com/xsteadfastx/xonsh-docker-tabcomplete',
description='docker tabcomplete support for the Xonsh shell',
author='Marvin Steadfast',
author_email='[email protected]',
packages=['xontrib', 'docker_tabcomplete'],
package_dir={'xontrib': 'xontrib'},
package_data={'xontrib': ['*.xsh']},
install_requires=['docker-py'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
]
)