-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 775 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 775 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
27
from setuptools import setup
setup(name='execution-trace',
version='1.2.0',
description="Trace the local context of a Python function's execution with just a decorator",
url='http://github.com/mihneadb/python-execution-trace',
author='Mihnea Dobrescu-Balaur',
author_email='mihnea@linux.com',
license='MIT',
packages=['execution_trace',
'execution_trace.viewer'],
include_package_data=True,
install_requires=[
'voluptuous==0.8.10',
'Flask==0.10.1',
],
test_suite='nose.collector',
tests_require=[
'nose==1.3.7',
'mock==1.3.0',
'parameterized==0.6.1',
],
scripts=[
'bin/view_trace',
],
zip_safe=False
)