-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (22 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
# https://packaging.python.org/tutorials/packaging-projects/
import sys
import setuptools
if not '3.4' <= sys.version < '4.0':
raise ImportError('Python version not supported')
setuptools.setup(name="tracebackturbo3",
version="0.3",
maintainer="Benjamin Schweizer",
maintainer_email="cxcv@cxcv.de",
description="Patched version of traceback, also dumps local and global scope vars.",
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/cxcv/python-tracebackturbo3",
license="PSF",
zip_safe=False,
packages=setuptools.find_packages(),
include_package_data=True
)