Files
libtorrent/bindings/python/setup.py.cmake.in
Eugene Shalygin ba294e6594 cmake: backport changes from the master branch
This fixes generated pkg-config file and adds options to build python
bindings.
2018-10-31 00:17:36 +01:00

16 lines
475 B
CMake

from setuptools import setup
import platform
setup(
name='libtorrent',
version='@libtorrent_VERSION@',
author='Arvid Norberg',
author_email='arvid@libtorrent.org',
description='Python bindings for libtorrent-rasterbar',
long_description='Python bindings for libtorrent-rasterbar',
url='http://libtorrent.org',
platforms=[platform.system() + '-' + platform.machine()],
license='BSD',
package_dir = {'': '@CMAKE_CURRENT_BINARY_DIR@'}
)