forked from AlexeyKupershtokh/xdebugtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 652 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='xdebugtoolkit',
version='0.2.3-2',
author='Alexey Kupershtokh',
author_email='alexey.kupershtokh@gmail.com',
url='https://github.com/AlexeyKupershtokh/xdebugtoolkit',
description="A toolkit for splitting, aggregating, analyzing and visualizing xdebug cachegrind files",
long_description=read("README.rst"),
license="LGPL",
scripts=['bin/cg2dot', 'bin/cgsplit', 'bin/xdot-pygoocanvas'],
py_modules=['cgparser', 'dot', 'stylers.default', 'reader']
)