First version of setup.py

Change-Id: I746f7ab3575c0e6d6050a067f779272d2b884ced
This commit is contained in:
Jonas Pfannschmidt 2015-06-18 18:34:50 +01:00 committed by Fausto Marzi
parent c24ce93ba8
commit 5ba40fa4e0
3 changed files with 47 additions and 0 deletions

10
MANIFEST.in Normal file
View File

@ -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

29
setup.cfg Normal file
View File

@ -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

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True,
)