This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
ntunnel
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Wiki
Activity
Browse Source
fix entry_points so that ntunnel is installed as an executable...
tags/v0.1.0
John-Mark Gurney
5 years ago
parent
c47d74f353
commit
c817243512
2 changed files
with
7 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
README.md
+4
-4
setup.py
+ 3
- 0
README.md
View File
@@ -10,6 +10,9 @@ TCP sockets.
Example
-------
Note: If you have installed the package, there is also the program
`ntunnel` that can be used instead of `python -m ntunnel`.
Generate the keys:
```
python -m ntunnel genkey serverkey
+ 4
- 4
setup.py
View File
@@ -29,9 +29,9 @@ setup(name='ntunnel',
extras_require = {
'dev': [ 'coverage' ],
},
entry_poi
t
ns={
'console_scripts':
{
'ntunnel
': 'ntunnel
:main',
}
entry_poin
t
s={
'console_scripts':
[
'ntunnel
= ntunnel.__main__
:main',
]
}
)
Write
Preview
Loading…
Cancel
Save