Skip to content

Commit e58fb6f

Browse files
committed
Support callgen as executable module
Move the callgenerator utility into the yate library and add it as an executable entrypoint
1 parent 9d1130f commit e58fb6f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name='python-yate',
11-
version='0.4.0',
11+
version='0.4.1',
1212
packages=['yate'],
1313
url='https://github.com/eventphone/python-yate',
1414
license='MIT',
@@ -28,4 +28,9 @@
2828
install_requires=[
2929
'async_timeout',
3030
],
31+
entry_points={
32+
"console_scripts": [
33+
"yate_callgen=yate.callgen:main",
34+
],
35+
},
3136
)
File renamed without changes.

0 commit comments

Comments
 (0)