File: setup.py

package info (click to toggle)
python-tinyalign 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 112 kB
  • sloc: python: 79; sh: 8; makefile: 6
file content (4 lines) | stat: -rw-r--r-- 183 bytes parent folder | download
1
2
3
4
from setuptools import setup, Extension
import setuptools_scm  # noqa  Ensure it’s installed

setup(ext_modules=[Extension("tinyalign._core", sources=["src/tinyalign/_core.pyx"])])