diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..03bb2d5 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,10 @@ +recursive-include bin *.js +recursive-include doc *.py *.rst *.css *.js *.html *.conf *.jpg *.gif *.png *.css_t +recursive-include tools *.py *.sh +recursive-include freezer_ui *.py *.html *.js *.scss *.mo *.po *.example *.eot *.svg *.ttf *.woff *.png *.ico *.wsgi *.gif *.csv *.template + +include AUTHORS +include ChangeLog +include LICENSE +include manage.py +include README.rst diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..748bd09 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,29 @@ +[metadata] +name = freezer-web-ui +author = Fabrizio Fresco, Fausto Marzi, Jonas Pfannschmidt, Guillermo Ramirez-Garcia +author-email = openstack-dev@lists.openstack.org +summary = Freezer - Backup as a Service User Inteface +description-file = README.rst +home-page = https://launchpad.net/freezer +license = Apache-2 +classifier = + Development Status :: 5 - Production/Stable + Environment :: OpenStack + Framework :: Django + Intended Audience :: Developers + Intended Audience :: Information Technology + Intended Audience :: System Administrators + License :: OSI Approved :: Apache Software License + Operating System :: OS Independent + Operating System :: POSIX :: Linux + Programming Language :: Python + Programming Language :: Python :: 2.7 + Topic :: Internet :: WWW/HTTP +keywords = + horizon + freezer + backup + openstack +[files] +packages = + freezer_ui diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aa2d8a0 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True, +)