Revision 6e168615 snf-tools/setup.py

b/snf-tools/setup.py
1
#!/usr/bin/env python
2
#
1 3
# Copyright 2011 GRNET S.A. All rights reserved.
2 4
#
3 5
# Redistribution and use in source and binary forms, with or
......
37 39

  
38 40
import os
39 41

  
40
from distutils.util import convert_path
41
from fnmatch import fnmatchcase
42
#from distutils.util import convert_path
43
#from fnmatch import fnmatchcase
42 44
from setuptools import setup, find_packages
43 45

  
44 46
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
......
65 67
CLASSIFIERS = []
66 68

  
67 69
# Package requirements
68
INSTALL_REQUIRES = ["fabric","IPy","unittest2", "python-prctl", "paramiko", "vncauthproxy", "kamaki"]
70
INSTALL_REQUIRES = [
71
    "fabric",
72
    "IPy",
73
    "unittest2",
74
    "python-prctl",
75
    "paramiko",
76
    "vncauthproxy",
77
    "kamaki >= 0.6.1"]
69 78

  
70 79
setup(
71
    name = 'snf-tools',
72
    version = VERSION,
73
    license = 'BSD',
74
    url = 'http://code.grnet.gr/',
75
    description = SHORT_DESCRIPTION,
76
    long_description=README + '\n\n' +  CHANGES,
77
    classifiers = CLASSIFIERS,
78

  
79
    author = 'Package author',
80
    author_email = 'author@grnet.gr',
81
    maintainer = 'Package maintainer',
82
    maintainer_email = 'maintainer@grnet.gr',
83

  
84
    packages = PACKAGES,
85
    package_dir= {'': PACKAGES_ROOT},
86
    include_package_data = True,
87
    zip_safe = False,
88

  
89
    install_requires = INSTALL_REQUIRES,
90

  
91
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
92

  
93
    entry_points = {
94
     'console_scripts': [
95
         'snf-burnin = synnefo_tools.burnin:main',
96
         ],
97
      }
98

  
99

  
80
    name='snf-tools',
81
    version=VERSION,
82
    license='BSD',
83
    url='http://code.grnet.gr/',
84
    description=SHORT_DESCRIPTION,
85
    long_description=README + '\n\n' + CHANGES,
86
    classifiers=CLASSIFIERS,
87

  
88
    author='Package author',
89
    author_email='author@grnet.gr',
90
    maintainer='Package maintainer',
91
    maintainer_email='maintainer@grnet.gr',
92

  
93
    packages=PACKAGES,
94
    package_dir={'': PACKAGES_ROOT},
95
    include_package_data=True,
96
    zip_safe=False,
97

  
98
    install_requires=INSTALL_REQUIRES,
99

  
100
    dependency_links=['http://docs.dev.grnet.gr/pypi'],
101

  
102
    entry_points={
103
        'console_scripts': ['snf-burnin = synnefo_tools.burnin:main']}
100 104
)
101

  

Also available in: Unified diff