Skip to content

Instantly share code, notes, and snippets.

@brianv0
Created April 16, 2015 20:10
Show Gist options
  • Save brianv0/b1c3cbb94979c0df4bac to your computer and use it in GitHub Desktop.
Save brianv0/b1c3cbb94979c0df4bac to your computer and use it in GitHub Desktop.
Python shared namespace setup.py
from setuptools import setup
requires = [
'flask'
]
setup(
name='webcommon',
namespace_packages = ["lsst"],
version='0.1',
package_dir={'lsst': 'python/lsst'},
package_data={'lsst': ['webcommon/templates/*.html']},
packages=['lsst', 'lsst.webcommon'],
license='',
zip_safe=False,
install_requires=requires
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment