Revision 8c6585ca

b/snf-common/setup.py
37 37

  
38 38
import os
39 39

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

  
44 42
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
......
68 66
]
69 67

  
70 68
setup(
71
    name = 'snf-common',
72
    version = VERSION,
73
    license = 'BSD',
74
    url = 'http://www.synnefo.org/',
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
    namespace_packages = ['synnefo', 'synnefo.versions'],
85
    packages = PACKAGES,
86
    package_dir= {'': PACKAGES_ROOT},
87
    include_package_data = True,
88
    zip_safe = False,
89

  
90
    install_requires = INSTALL_REQUIRES,
91
    extras_require = EXTRAS_REQUIRES,
92
    tests_require = TESTS_REQUIRES,
93

  
94
    dependency_links = ['http://docs.dev.grnet.gr/pypi']
69
    name='snf-common',
70
    version=VERSION,
71
    license='BSD',
72
    url='http://www.synnefo.org/',
73
    description=SHORT_DESCRIPTION,
74
    long_description=README + '\n\n' + CHANGES,
75
    classifiers=CLASSIFIERS,
76

  
77
    author='Synnefo development team',
78
    author_email='synnefo-devel@googlegroups.com',
79
    maintainer='Synnefo development team',
80
    maintainer_email='synnefo-devel@googlegroups.com',
81

  
82
    namespace_packages=['synnefo', 'synnefo.versions'],
83
    packages=PACKAGES,
84
    package_dir={'': PACKAGES_ROOT},
85
    include_package_data=True,
86
    zip_safe=False,
87

  
88
    install_requires=INSTALL_REQUIRES,
89
    extras_require=EXTRAS_REQUIRES,
90
    tests_require=TESTS_REQUIRES,
91

  
92
    dependency_links=['http://docs.dev.grnet.gr/pypi']
95 93
)
96

  

Also available in: Unified diff