-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 810 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
from setuptools import setup
def read_file(filename):
with open(filename, 'r') as fd:
return fd.read()
# see examples in https://docs.python.org/3/distutils/examples.html
setup(
name='flashprof',
version='0.0.17',
description='a tool that collects and visualizes TiFlash runtime infomation',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='dragonly',
author_email='[email protected]',
url='https://github.com/dragonly/tiflash_mpp_profiler',
license=read_file('LICENSE'),
package_dir={'': 'src'},
packages=[''],
entry_points={
'console_scripts': [
'flashprof = main:cli'
]
},
install_requires=[
'graphviz',
'paramiko',
'pyyaml'
]
)