forked from larsks/lvcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 714 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 714 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='lvcache',
version='1.0.1',
description='Wrapper for creating cached LVM logical volumes',
author='Lars Kellogg-Stedman',
author_email='lars@oddbit.com',
url='http://github.com/larsks/lvcache',
install_requires=['cliff', 'sh'],
packages=find_packages(),
entry_points = {
'console_scripts': [
'lvcache=lvcache.main:main',
],
'com.oddbit.lvcache': [
'status = lvcache.cmd_status:Status',
'create = lvcache.cmd_create:Create',
'remove = lvcache.cmd_remove:Remove',
'list = lvcache.cmd_list:List',
],
}
)