-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
executable file
·48 lines (38 loc) · 1.3 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
#!/usr/bin/env python
import os
import sys
from distutils.core import setup
__dir__ = os.path.realpath(os.path.dirname(__file__))
sys.path.insert(0, __dir__)
try:
import stream
finally:
del sys.path[0]
classifiers = """
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
"""
__doc__ = """Streams are iterables with a pipelining mechanism to enable data-flow
programming and easy parallelization.
See the reference documentation at <http://www.trinhhaianh.com/stream.py>.
Articles written by the author about the module can be viewed at <http://blog.onideas.ws/tag/project:stream.py>.
The code repository is located at <http://github.com/aht/stream.py>.
"""
setup(
name = 'stream',
version = stream.__version__,
description = stream.__doc__.split('\n')[0],
long_description = __doc__,
author = 'Anh Hai Trinh',
author_email = '[email protected]:otliam'[::-1],
keywords='lazy iterator generator stream pipe parallellization data flow functional list processing',
url = 'http://github.com/aht/stream.py',
platforms=['any'],
classifiers=filter(None, classifiers.split("\n")),
py_modules = ['stream']
)