mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-05-07 08:19:55 -04:00
ba294e6594
This fixes generated pkg-config file and adds options to build python bindings.
16 lines
475 B
CMake
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@'}
|
|
)
|