Skip to content

Commit

Permalink
Merge pull request #30 from TeskaLabs/fix/27
Browse files Browse the repository at this point in the history
Fix of missing files in the source distribution,
  • Loading branch information
ateska authored Mar 22, 2022
2 parents f079b2f + d97f7f6 commit e01ec21
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@

setup(
name='cysimdjson',
version="21.11b2",
version="21.11",
description='Cython-based wrapper for SIMDJSON',
long_description=long_description,
long_description_content_type='text/markdown',
author='TeskaLabs Ltd',
author_email='info@teskalabs.com',
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand All @@ -53,5 +53,18 @@
},
install_requires=[
],
setup_requires=[
"cython"
],
package_data={
"cysimdjson": [
"cysimdjson.pyx",
"cysimdjson.h",
"cysimdjsonc.h",
"jsoninter.h",
"pysimdjson/errors.h",
"simdjson/simdjson.h",
]
},
ext_modules=cythonize(extensions),
)

0 comments on commit e01ec21

Please sign in to comment.