forked from gleb-sevruk/pycrunch-trace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 722 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
from distutils.core import setup
setup(name='pycrunch-trace',
version='0.1.5',
description='PyCrunch Time Travel Debugger',
url='http://github.com/gleb-sevruk/pycrunch-trace',
author='Gleb Sevruk',
author_email='gleb@pycrunch.com',
license='libpng',
keywords="tracing time travel debugging live coding",
packages=setuptools.find_packages(),
download_url='https://github.com/gleb-sevruk/pycrunch-trace/archive/v0.1.0.tar.gz',
setup_requires=['wheel', 'Cython'],
install_requires=[
'Cython',
'jsonpickle',
'PyYAML',
'protobuf==3.11.3'
],
include_package_data=True,
zip_safe=False)