This repository has been archived by the owner on Oct 5, 2018. It is now read-only.
forked from cgimeno/Openstack-handler-for-vmcatcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (39 loc) · 1.48 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
40
41
42
43
44
45
46
from sys import version_info
import os
try:
from setuptools import setup, find_packages
except ImportError:
try:
from distutils.core import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
version = "0.0.5"
productname = "gpvcmupdate"
data_files_installdir = "/usr/share/doc/gpvcmupdate-%s" % (version)
if "VIRTUAL_ENV" in os.environ:
data_files_installdir = 'doc'
setup(name=productname,
version=version,
description="%s manages images in fedcloud for openstack" % (productname),
long_description="""This software, fills the gap between
[vmcatcher](https://github.com/hepix-virtualisation/vmcatcher) and
[glancepush](https://github.com/EGI-FCTF/glancepush/wiki)""",
author="Carlos Gimeno Yanez",
author_email="[email protected]",
license='MIT License',
url = 'https://github.com/cgimeno/Openstack-handler-for-vmcatcher',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research'
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
],
scripts=['gpvcmupdate.py'],
data_files=[(data_files_installdir ,['README.md','ChangeLog','LICENSE'])]
)