Skip to content

Commit b010d99

Browse files
author
Sumer Cip
committed
some cosmetic dir./code changes
1 parent 558d1ee commit b010d99

18 files changed

+5
-6
lines changed

logo.png renamed to Misc/logo.png

File renamed without changes.

logo.tif renamed to Misc/logo.tif

File renamed without changes.

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<p align="center">
2-
<img src="https://github.com/sumerc/yappi/blob/coroutine-profiling/logo.png" alt="yappi">
2+
<img src="https://github.com/sumerc/yappi/blob/coroutine-profiling/Misc/logo.png" alt="yappi">
33
</p>
44

5-
65
<h1 align="center">Yappi</h1>
76
<p align="center">
8-
Yet Another Python Profiler, but this time <b>thread/coroutine</b> aware.
7+
Yet Another Python Profiler, but this time <b><u>thread</u>&<u>coroutine</u></b> aware.
98
</p>
109

1110
<p align="center">

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,16 @@
7070
Extension(
7171
"_yappi",
7272
sources=[
73-
"src/_yappi.c", "src/callstack.c", "src/hashtab.c", "src/mem.c",
74-
"src/freelist.c", "src/timing.c"
73+
"yappi/_yappi.c", "yappi/callstack.c", "yappi/hashtab.c",
74+
"yappi/mem.c", "yappi/freelist.c", "yappi/timing.c"
7575
],
7676
define_macros=user_macros,
7777
libraries=user_libraries,
7878
extra_compile_args=compile_args,
7979
extra_link_args=link_args,
8080
)
8181
],
82-
package_dir={'': 'src/'},
82+
package_dir={'': 'yappi/'},
8383
py_modules=["yappi"],
8484
entry_points={
8585
'console_scripts': [
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/mem.c renamed to yappi/mem.c

File renamed without changes.

src/mem.h renamed to yappi/mem.h

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)