blob: 0a98cc394e3dfd7e43394cd69268e51b46c00f9f [file] [log] [blame]
#!/usr/bin/env python3
# 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',
]
}
)