forked from louwrentius/fio-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 909 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 909 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="fio-plot",
version="1.1.1",
author="louwrentius",
description="Create charts from FIO storage benchmark tool output",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/louwrentius/fio-plot/",
packages=setuptools.find_packages(),
install_requires=['numpy','matplotlib','Pillow', 'pyan3', 'pyparsing'],
include_package_data=True,
package_data={'bench_fio': ['templates/*.fio',
'scripts/*.sh']},
entry_points = {
'console_scripts': [
'fio-plot = fio_plot:main',
'bench-fio = bench_fio:main'
],
},
scripts=['bin/fio-plot', 'bin/bench-fio'],
)