Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F7159853
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
setup.py
View Options
#!/usr/bin/env python
import
os
from
distutils.core
import
setup
from
eventlib
import
__version__
def
find_packages
(
toplevel
):
return
[
directory
.
replace
(
os
.
path
.
sep
,
'.'
)
for
directory
,
subdirs
,
files
in
os
.
walk
(
toplevel
)
if
'__init__.py'
in
files
]
setup
(
name
=
'python-eventlib'
,
version
=
__version__
,
description
=
'Coroutine-based networking library'
,
author
=
'Linden Lab'
,
maintainer
=
"AG Projects"
,
maintainer_email
=
"support@ag-projects.com"
,
url
=
'http://devel.ag-projects.com/repositories/python-eventlib'
,
packages
=
find_packages
(
'eventlib'
),
long_description
=
"""
Eventlib is a networking library written in Python. It achieves
high scalability by using non-blocking io while at the same time
retaining high programmer usability by using coroutines to make
the non-blocking io operations appear blocking at the source code
level."""
,
classifiers
=
[
"License :: OSI Approved :: MIT License"
,
"Programming Language :: Python"
,
"Operating System :: MacOS :: MacOS X"
,
"Operating System :: POSIX"
,
"Topic :: Internet"
,
"Topic :: Software Development :: Libraries :: Python Modules"
,
"Intended Audience :: Developers"
,
"Development Status :: 4 - Beta"
])
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Sat, Nov 23, 2:18 PM (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3409210
Default Alt Text
setup.py (1 KB)
Attached To
Mode
rPYEVENTLIB python3-eventlib
Attached
Detach File
Event Timeline
Log In to Comment