-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
38 lines (37 loc) · 1.1 KB
/
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
33
34
35
36
37
38
import setuptools
from distutils.core import setup
setup(name='pycrunch-trace',
version='0.3',
description='PyCrunch Time Travel Debugger',
url='https://pytrace.com/',
author='Gleb Sevruk',
author_email='gleb@pycrunch.com',
license='MIT',
keywords=[
'tracing',
'debugging',
'time-travel debugging',
'record-and-replay debugging',
'live coding',
],
packages=setuptools.find_packages(),
setup_requires=['wheel', 'Cython'],
install_requires=[
'Cython',
'jsonpickle',
'PyYAML',
'protobuf>=3.11.3,<4',
'jsonpickle',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Debuggers',
],
project_urls={
'Source': 'https://github.com/gleb-sevruk/pycrunch-trace/',
'Funding': 'https://pycrunch.com/donate',
},
include_package_data=True,
zip_safe=False)