-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (27 loc) · 1.25 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
from setuptools import setup
setup(
name='rel',
version='0.4.9.19',
author='Mario Balibrera',
author_email='[email protected]',
license='MIT License',
description='Registered Event Listener. Provides standard (pyevent) interface and functionality without external dependencies',
long_description='Registered Event Listener (rel) is a cross-platform asynchronous event dispatcher primarily designed for network applications. Select your preferred event notification methods with initialize([methods in order of preference]). If initialize(...) is not called, methods are tried in the default order: epoll, kqueue, poll, select, pyevent. Code and docs live on github: https://github.com/bubbleboy14/registeredeventlistener',
packages=[
'rel',
],
zip_safe = False,
entry_points = '''
[console_scripts]
rtimer = rel.tools:timerCLI
''',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)