summaryrefslogtreecommitdiff
path: root/demo/bsdopendirtype_setup.py
blob: 30a6cfb32a080f7853764beaf575fe6d6350e649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup

setup(
    name="example",
    version="0.1",
    py_modules=["bsdopendirtype"],
    setup_requires=["cffi>=1.0.dev0"],
    cffi_modules=[
        "bsdopendirtype_build.py:ffibuilder",
    ],
    install_requires=["cffi>=1.0.dev0"],   # should maybe be "cffi-backend" only?
    zip_safe=False,
)