-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 815 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (26 loc) · 815 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(name='vagga-box',
version='0.1',
description='A wrapper to run vagga in virtualbox (easier on osx)',
author='Paul Colomiets',
author_email='paul@colomiets.name',
url='http://github.com/tailhook/vagga-box',
packages=['vagga_box'],
install_requires=[
'PyYaml',
'macfsevents',
],
package_data={'vagga_box': ['id_rsa', 'ssh_config']},
entry_points = {
'console_scripts': [
'vagga=vagga_box.main:main',
'unison-fsmonitor=vagga_box.unox:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)