-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (32 loc) · 1020 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
29
30
31
32
33
34
35
from setuptools import setup, find_packages
__version__ = "0.2.5"
install_requires = [
'docker',
]
setup(
name="python-docker-machine",
version=__version__,
packages=find_packages(),
install_requires=install_requires,
package_data={
'': ['*.rst'],
},
author="Gijs Molenaar",
author_email="[email protected]",
description="Python wrapper around docker-machine",
license="GPL2",
keywords="docker machine docker-machine container",
url="https://github.com/gijzelaerr/python-docker-machine",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)