terom@40: #!/usr/bin/env python terom@40: terom@40: from distutils.core import setup terom@40: terom@40: setup( terom@40: # metadata terom@40: name = "Degal", terom@40: version = "0.1", terom@40: description = "Image gallery script", terom@40: author = "Tero Marttila", terom@40: author_email = "terom@fixme.fi", terom@40: url = "http://projects.qmsk.net/degal", terom@40: terom@40: # dependencies terom@40: requires = [ terom@40: "mako", terom@40: terom@40: ], terom@40: terom@40: # manifest terom@40: packages = [ terom@40: 'degal' terom@40: ], terom@40: terom@42: package_data = { terom@42: 'degal': [ 'templates/*.html', 'static/*' ], terom@42: }, terom@42: terom@40: scripts = [ terom@40: 'scripts/degal' terom@40: ], terom@40: )