forked from louwrentius/fio-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 778 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="fio-plot",
version="1.1.15",
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", "rich"],
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"],
)