This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
hyde
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Issue
#56
: Changed deploy location for main.py and fixed entry point in setup.py. Thanks to Joe Steeve
main
Lakshmi Vyasarajan
13 years ago
parent
abf2a5b694
commit
46055a2fe3
3 changed files
with
2 additions
and
15 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+0
-13
main.py
+1
-2
setup.py
+ 1
- 0
.gitignore
View File
@@ -17,3 +17,4 @@ PYSMELLTAGS
.noseids
.noseids
*.tar.gz
*.tar.gz
.hyde_deps
.hyde_deps
src
+ 0
- 13
main.py
View File
@@ -1,13 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
The hyde executable
"""
from hyde.engine import Engine
def main():
"""Main"""
Engine().run()
if __name__ == "__main__":
main()
+ 1
- 2
setup.py
View File
@@ -139,10 +139,9 @@ setup(name=PROJECT,
package=PROJECT,
package=PROJECT,
only_in_packages=False,
only_in_packages=False,
),
),
scripts=['main.py'],
entry_points={
entry_points={
'console_scripts': [
'console_scripts': [
'hyde = main:main'
'hyde =
hyde.
main:main'
]
]
},
},
license='MIT',
license='MIT',
Write
Preview
Loading…
Cancel
Save