File: setup.py

package info (click to toggle)
plover-stroke 1.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: ansic: 1,255; python: 859; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 185 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

from setuptools import Extension, setup


setup(
    ext_modules=[
        Extension('_plover_stroke',
                  sources=['_plover_stroke.c']),
    ],
)