Skip to content
This repository was archived by the owner on Jun 4, 2021. It is now read-only.

Commit ac43e6d

Browse files
committed
added stacktrace to decorators.py
1 parent 5aa1a8c commit ac43e6d

File tree

21 files changed

+738
-18
lines changed

21 files changed

+738
-18
lines changed

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

.idea/aws.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/examples.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

build.bat

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
rm ./dist/*
2+
3+
python setup.py build sdist bdist_wheel
4+
5+
python -m twine upload dist/*
6+
7+
pause

setup.py

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
from setuptools import setup
2-
from src.PyDebug import version
2+
3+
from src.PythonDebugTools import version
34

45

56

67

78
data_files = [
8-
'PyDebug/*.py'
9+
'PythonDebugTools/*.py'
910
]
1011

1112
setup(
12-
name='PyDebug',
13+
name='PythonDebugTools',
1314
version=version,
14-
packages=['PyDebug'],
15+
packages=['PythonDebugTools'],
1516
url='https://github.com/Jakar510/PyDebug',
17+
download_url='https://github.com/Jakar510/PyDebug/releases/tag/v1.5.0',
1618
license='GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007',
1719
author='Tyler Stegmaier',
1820
author_email='tyler.stegmaier.510@gmail.com',
@@ -23,7 +25,7 @@
2325
# 3 - Alpha
2426
# 4 - Beta
2527
# 5 - Production/Stable
26-
'Development Status :: 3 - Alpha',
28+
'Development Status :: 4 - Beta',
2729

2830
# Indicate who your project is intended for
2931
'Intended Audience :: Developers',
@@ -40,8 +42,8 @@
4042
'Programming Language :: Python :: 3',
4143
],
4244
keywords='switch switch-case case',
43-
package_dir={ 'PyDebug': 'src/PyDebug' },
45+
package_dir={ 'PythonDebugTools': 'src/PythonDebugTools' },
4446
package_data={
45-
'PyDebug': data_files,
47+
'PythonDebugTools': data_files,
4648
},
4749
)

src/PyDebug/__version__.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)