forked from ReactiveX/RxPY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.82 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
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
setup(
name='Rx',
version='1.5.5',
description='Reactive Extensions (Rx) for Python',
long_description=("is a library for composing asynchronous and "
"event-based programs using observable collections and LINQ-style "
"query operators in Python."),
author='Dag Brattli',
author_email='[email protected]',
license='Apache License',
url='http://reactivex.io',
download_url='https://github.com/ReactiveX/RxPY',
zip_safe=True,
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: IronPython',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='nose.collector',
packages=['rx', 'rx.core', 'rx.core.py2', 'rx.core.py3', 'rx.internal',
'rx.linq', 'rx.linq.observable', 'rx.linq.enumerable',
'rx.concurrency', 'rx.concurrency.mainloopscheduler', 'rx.joins',
'rx.linq.observable.blocking', 'rx.disposables', 'rx.subjects',
'rx.backpressure', 'rx.testing'],
package_dir={'rx': 'rx'}
)