blob: e4e51f1e94ff00da919a8839d02c8a37f20ab52a [file] [log] [blame]
#!/usr/bin/env python
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from setuptools import setup
setup(
name='mem',
version='0.0.1',
description='Tools for accessing /dev/mem',
py_modules=['mem'],
entry_points={
'console_scripts': [
'mem = mem:main',
]
}
)