3 from stem
import __version__
, \
9 from distutils
.core
import setup
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."""
17 from distutils
.command
.build_py
import build_py_2to3
as build_py
19 from distutils
.command
.build_py
import build_py
22 version
= __version__
,
23 description
= DESCRIPTION
,
24 license
= __license__
,
26 author_email
= __contact__
,
28 packages
= ['stem', 'stem.descriptor', 'stem.response', 'stem.util'],
30 cmdclass
= {'build_py': build_py
},
31 keywords
= "tor onion controller",