-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
33 lines (31 loc) · 1.13 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
from setuptools import setup, find_packages
with open('README.rst') as file:
long_description = file.read()
setup(name='docker-windows-volume-watcher',
version='1.2.0',
packages=find_packages(),
entry_points={
'console_scripts': ['docker-volume-watcher=docker_volume_watcher.cli:main'],
},
description='A tool to notify Docker contianers about changes in mounts on Windows.',
author='Mikhail Erofeev',
author_email='[email protected]',
url='http://github.com/merofeev/docker-windows-volume-watcher',
install_requires=[
'watchdog>=0.8.3',
'docker>=3.0.0',
'future>=0.17.1',
],
license='MIT',
long_description=long_description,
keywords='Docker volume Windows watch inotify',
classifiers=[
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: System :: Monitoring'
],
)