-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
24 lines (22 loc) · 896 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="TDebugger",
version="0.2.3.1",
packages=["TDebugger", "TDebugger.TestAlgos"],
entry_points={"console_scripts": [
"TDebugger = TDebugger.TDebugger:main"]},
author="Jayesh Nirve",
author_email="[email protected]",
description="A advanced python debugger with live tracing that outputs video logs of a program's execution.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CCExtractor/TDebugger",
license="GPL-2.0",
include_package_data=True,
install_requires=['Pillow', 'opencv-python', 'numpy', 'pyyaml'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
)