Created
April 16, 2015 20:10
-
-
Save brianv0/b1c3cbb94979c0df4bac to your computer and use it in GitHub Desktop.
Python shared namespace setup.py
This file contains hidden or 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 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