-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
32 lines (28 loc) · 928 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
os.chdir(os.path.dirname(sys.argv[0]) or ".")
setup(
name="cffi-example",
version="0.1",
description="An example project using Python's CFFI",
long_description=open("README.rst", "rt").read(),
url="https://github.com/wolever/python-cffi-example",
author="David Wolever",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: BSD License",
],
packages=find_packages(),
install_requires=["cffi>=1.0.0"],
setup_requires=["cffi>=1.0.0"],
cffi_modules=[
"./cffi_example/build_person.py:ffi",
"./cffi_example/build_fnmatch.py:ffi",
],
)