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

setup(
    name="readdir2",
    version="0.1",
    py_modules=["readdir2"],
    setup_requires=["cffi>=1.0"],
    cffi_modules=[
        "readdir2_build:ffi",
    ],
    install_requires=["cffi>=1.0"],   # should maybe be "cffi-backend" only?
    zip_safe=False,
)