Created
August 3, 2012 11:34
-
-
Save arsatiki/3246828 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
frontend/ | |
setup.py | |
muf-web/ | |
__init__.py | |
backend/ | |
setup.py | |
muf-server/ | |
... | |
more directories.../ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from distutils.core import setup | |
setup(name="muf-web", | |
version = "0.0.1", | |
url = "", | |
description = "A simple webserver that serves the client UI", | |
author = "Antti Rasinen", | |
author_email = "[email protected]", | |
packages = ["muf-web"], | |
package_data = {'muf-web': ['js/*', 'img/*', 'index.html']} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment