-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.61 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.61 KB
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
#!/usr/bin/env python
import sys
from setuptools import setup
setupopts = {
'test_suite':"fdsend.tests",
}
from distutils.extension import Extension
setup(
name="fdsend",
version="0.2.1",
description="File descriptor passing (via SCM_RIGHTS)",
author="Michael J. Pomraning",
author_email="mjp-py@pilcrow.madison.wi.us",
maintainer="Philipp Kern and Fabian Knittel",
maintainer_email="python-fdsend@googlegroups.com",
url="https://gitorious.org/python-fdsend/pages/Home",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: C',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.2',
'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['fdsend'],
ext_modules=[Extension(name="_fdsend", sources=['_fdsend.c'])],
long_description="""\
fdsend is yet another file descriptor passing abstraction, specifically for
Python. This package offers a few conveniences not commonly found together in
other abstractions: sending multiple files at once, sending arbitrary data, and
working with both files and file descriptors.""",
**setupopts
)