summaryrefslogtreecommitdiff
path: root/setup.py
blob: 66feebae6077cf3ff4a53eff68eb9c675419da84 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
# $Id$

import sys
try:
    from setuptools import setup, Extension
except ImportError:
    from distutils.core import setup, Extension

if sys.version_info < (2, 5):
    sys.exit('python version not supported (< 2.5)')

if 'sunos' in sys.platform:
    libraries = ["sendfile"]
else:
    libraries = []

def main():
    setup(name='py-sendfile',
          version='2.0.0',
          description='A Python interface to sendfile(2)',
          url='http://code.google.com/p/py-sendfile/',
          author='Giampaolo Rodola',
          author_email='g.rodola@gmail.com',
          license='License :: OSI Approved :: MIT License',
          long_description=open('README', 'r').read(),
          keywords=['sendfile', 'ftp'],
          classifiers = [
              'Development Status :: 4 - Beta',
              'Intended Audience :: Developers',
              'Operating System :: POSIX :: Linux',
              'Operating System :: MacOS :: MacOS X',
              'Operating System :: POSIX :: BSD :: FreeBSD',
              'Operating System :: POSIX :: SunOS/Solaris',
              'Operating System :: POSIX :: AIX',
              'Programming Language :: C',
              'Programming Language :: Python :: 2.4',
              'Programming Language :: Python :: 2.5',
              'Programming Language :: Python :: 2.6',
              'Programming Language :: Python :: 2.7',
              'Programming Language :: Python :: 3',
              'Programming Language :: Python :: 3.0',
              'Programming Language :: Python :: 3.1',
              'Programming Language :: Python :: 3.2',
              'Programming Language :: Python :: 3.3',
              'Topic :: System :: Networking',
              'Topic :: System :: Operating System',
              'Topic :: Internet :: File Transfer Protocol (FTP)',
              'Topic :: Internet :: WWW/HTTP',
              'License :: OSI Approved :: GNU Library or Lesser General ' \
                                          'Public License (LGPL)',
               ],
          ext_modules = [Extension('sendfile',
                                   sources=['sendfilemodule.c'],
                                   libraries=libraries)],
          )
    # check for NotImplementedError exception if platform is not supported
    import sendfile
    try:
        sendfile.sendfile(0, 0, 0, 0)
    except NotImplementedError:
        raise NotImplementedError("platform %r not supported" % sys.platform)
    except:
        pass


if __name__ == '__main__':
    main()