-
Notifications
You must be signed in to change notification settings - Fork 117
/
setup.py
executable file
·39 lines (37 loc) · 1.33 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
import sys
sys.path.append('./src')
setup(
name='openxenmanager',
version='0.1b1',
packages=['OXM', 'pygtk_chart'],
package_dir={'': 'src'},
url='http://github.com/OpenXenManager/openxenmanager',
license='GPLv2+',
author='Daniel Lintott',
author_email='[email protected]',
description='Opensource XenServer/XCP Management GUI',
requires=['configobj', 'pygtk', 'raven'],
scripts=['openxenmanager'],
package_data={'OXM': ['oxc.conf',
'ui/*.glade',
'images/*.gif',
'images/*.png',
'images/menu/*.png',
'images_map/*'],
'pygtk_chart': ['data/tango.color']},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or '
'later (GPLv2+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)