forked from kamilgrymuza/python-vagrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 852 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
import os
from setuptools import setup, find_packages
setup(
name = 'python-vagrant',
version = '0.1.0',
license = 'MIT',
description = 'Python bindings for interacting with Vagrant virtual machines.',
long_description = open(os.path.join(os.path.dirname(__file__),
'README.md')).read(),
keywords = 'python virtual machine box vagrant virtualbox vagrantfile',
url = 'https://github.com/todddeluca/python-vagrant',
author = 'Todd Francis DeLuca',
author_email = '[email protected]',
classifiers = ['License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
py_modules = ['vagrant'],
)