File: setup.py

package info (click to toggle)
mapdamage 2.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: python: 1,543; ansic: 317; makefile: 33; sh: 28
file content (12 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3
from setuptools import Extension, setup

setup(
    ext_modules=[
        Extension(
            "mapdamage.seqtk",
            sources=["mapdamage/seqtk/seqtk.c"],
            libraries=["z"],
        )
    ],
)