1from setuptools import setup
2import platform
3
4setup(
5    name='libtorrent',
6    version='@libtorrent_VERSION@',
7    author='Arvid Norberg',
8    author_email='arvid@libtorrent.org',
9    description='Python bindings for libtorrent-rasterbar',
10    long_description='Python bindings for libtorrent-rasterbar',
11    url='http://libtorrent.org',
12    platforms=[platform.system() + '-' + platform.machine()],
13    license='BSD',
14    package_dir = {'': '@CMAKE_CURRENT_BINARY_DIR@'}
15)
16