-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (45 loc) · 1.98 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
47
48
49
50
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; -*-
from setuptools import setup
from setuptools.extension import Extension
modules = ['ropebuffer', 'channel', 'messenger', 'serialize', 'service']
extensions = [Extension(
name ='socketless.%s' % module,
sources = ['socketless/%s.c' % module],
extra_compile_args = ['-w'],
) for module in modules]
setup(
name='socketless',
version='0.4.0',
packages=['socketless'],
ext_modules = extensions,
install_requires = ['syncless>=0.20'],
zip_safe=True,
author = "Daniel Norberg",
author_email = "[email protected]",
url = "https://github.com/danielnorberg/socketless/",
description = "Socketless: An asynchronous high performance TCP messaging library.",
long_description = """\
Socketless is a an asynchronous TCP messaging library for
implementing communication using messages and broadcast req/rep
instead of raw sockets. Socketless relies on the library syncless
to provide high-performance non-blocking sockets through utilization
of epoll/kevent/kqueue. Socketless is implemented in Cython for high throughput.
""",
license="Apache License, Version 2.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)