Add missing setup.py file.
This commit is contained in:
parent
bd671e27fa
commit
8c3e65fd84
29
django-nova-syspanel/setup.py
Normal file
29
django-nova-syspanel/setup.py
Normal file
@ -0,0 +1,29 @@
|
||||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
setup(
|
||||
name = "django-nova-syspanel",
|
||||
version = "0.1",
|
||||
url = 'https://launchpad.net/openstack-dashboard/',
|
||||
license = 'Apache 2.0',
|
||||
description = "A Django interface for OpenStack Nova.",
|
||||
long_description = read('README'),
|
||||
author = 'Todd Willey',
|
||||
author_email = 'xtoddx@gmail.com',
|
||||
packages = find_packages('src'),
|
||||
package_dir = {'': 'src'},
|
||||
install_requires = ['setuptools', 'boto==1.9b', 'mox>=0.5.0'],
|
||||
classifiers = [
|
||||
'Development Status :: 4 - Beta',
|
||||
'Framework :: Django',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: Apache License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
]
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user