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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/env python
from setuptools import setup, Extension
import os
import codecs
if os.getenv('XXHASH_LINK_SO'):
libraries = ['xxhash']
source = ['src/_xxhash.c']
include_dirs = []
else:
libraries = []
source = ['src/_xxhash.c', 'deps/xxhash/xxhash.c']
include_dirs = ['deps/xxhash']
ext_modules = [
Extension(
'_xxhash',
source,
include_dirs=include_dirs,
libraries=libraries,
)
]
def readfile(filename):
with codecs.open(filename, encoding='utf-8', mode='r') as f:
return f.read()
long_description = readfile('README.rst') + '\n' + readfile('CHANGELOG.rst')
setup(
name='xxhash',
description="Python binding for xxHash",
long_description=long_description,
long_description_content_type="text/x-rst",
author='Yue Du',
author_email='ifduyue@gmail.com',
url='https://github.com/ifduyue/python-xxhash',
license='BSD',
packages=['xxhash'],
ext_package='xxhash',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
],
python_requires=">=3.6",
ext_modules=ext_modules,
package_data={"xxhash": ["py.typed", "**.pyi"]},
)
|