File: setup.py

package info (click to toggle)
python-fastbencode 0.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: python: 478; makefile: 12
file content (16 lines) | stat: -rwxr-xr-x 307 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python3


from setuptools import setup
from setuptools_rust import Binding, RustExtension

setup(
    rust_extensions=[
        RustExtension(
            "fastbencode._bencode_rs",
            binding=Binding.PyO3,
            py_limited_api=False,
            optional=True,
        )
    ],
)