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
commit
46055a2fe3
3 changed files with 2 additions and 15 deletions
  1. +1
    -0
      .gitignore
  2. +0
    -13
      main.py
  3. +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',


Loading…
Cancel
Save