Skip to content

Instantly share code, notes, and snippets.

@arsatiki
Created August 3, 2012 11:34
Show Gist options
  • Save arsatiki/3246828 to your computer and use it in GitHub Desktop.
Save arsatiki/3246828 to your computer and use it in GitHub Desktop.
frontend/
setup.py
muf-web/
__init__.py
backend/
setup.py
muf-server/
...
more directories.../
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