Revisions for STREAM_BW support
[stem/neena.git] / setup.py
blob395f97c463183b29844e3977ca402672a6e2f3e8
1 #!/usr/bin/env python
3 from stem import __version__, \
4 __author__, \
5 __contact__, \
6 __url__, \
7 __license__
9 from distutils.core import setup
11 DESCRIPTION = """\
12 Stem is a python controller library for Tor <https://www.torproject.org/>.
13 Like its predecessor, TorCtl, it uses Tor's control protocol to help
14 developers program against the Tor process."""
16 try:
17 from distutils.command.build_py import build_py_2to3 as build_py
18 except ImportError:
19 from distutils.command.build_py import build_py
21 setup(name = 'stem',
22 version = __version__,
23 description = DESCRIPTION,
24 license = __license__,
25 author = __author__,
26 author_email = __contact__,
27 url = __url__,
28 packages = ['stem', 'stem.descriptor', 'stem.response', 'stem.util'],
29 provides = ['stem'],
30 cmdclass = {'build_py': build_py},
31 keywords = "tor onion controller",