forked from storagesw/pio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (27 loc) · 850 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
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
def read(filename):
with open(filename) as f:
return f.read()
setup(
name="pio",
version=read("VERSION"),
description='A scale-out IO benchmarking framework',
long_description=read("README.md"),
license='Apache License 2.0',
author='Irad Cohen',
author_email='[email protected]',
install_requires=[
'ClusterShell'],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(),
include_package_data = True,
entry_points={
'console_scripts': ['pio=pio.pio:main']
}
)