summaryrefslogtreecommitdiff
path: root/setup.py
blob: d12a6d8a6b7e30866c6ac6bf77d2fa2bbe913b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup

import pyqidx_build as pyqidx_build

setup(
	name='pyqidx',
	version='0.0.1',
	author='Flu0r1ne',
	author_email='flu0r1ne@flu0r1ne.net',
	description='Python bindings for qidx',
	url='https://git.flu0r1ne.net',
	license='MIT',
	setup_requires=["cffi>=1.0.0"],
	cffi_modules=["pyqidx_build.py:ffibuilder"],
	install_requires=["cffi>=1.0.0"],
	packages=['pyqidx'],
	ext_modules=[pyqidx_build.ffibuilder.distutils_extension()],
)