Fix issues causing tox not to run
parent
7482e9d20f
commit
969681a731
|
@ -3,7 +3,5 @@ include README.rst
|
||||||
|
|
||||||
recursive-include tests *
|
recursive-include tests *
|
||||||
recursive-include requirements *
|
recursive-include requirements *
|
||||||
recursive-exclude * __pycache__
|
|
||||||
recursive-exclude * *.py[co]
|
|
||||||
|
|
||||||
recursive-include docs *.rst conf.py Makefile
|
recursive-include docs *.rst conf.py Makefile
|
||||||
|
|
16
setup.py
16
setup.py
|
@ -23,8 +23,9 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from setuptools import setup
|
from setuptools import setup, find_packages
|
||||||
from setuptools.command.build_ext import build_ext
|
|
||||||
|
os.chdir(os.path.dirname(sys.argv[0]) or ".")
|
||||||
|
|
||||||
import re
|
import re
|
||||||
VERSIONFILE = "wolfcrypt/_version.py"
|
VERSIONFILE = "wolfcrypt/_version.py"
|
||||||
|
@ -61,11 +62,7 @@ setup(
|
||||||
url="https://github.com/wolfssl/wolfcrypt-py",
|
url="https://github.com/wolfssl/wolfcrypt-py",
|
||||||
license="GPLv2 or Commercial License",
|
license="GPLv2 or Commercial License",
|
||||||
|
|
||||||
packages=["wolfcrypt"],
|
packages=find_packages(),
|
||||||
|
|
||||||
zip_safe=False,
|
|
||||||
cffi_modules=["./wolfcrypt/_build_ffi.py:ffibuilder"],
|
|
||||||
|
|
||||||
keywords="wolfssl, wolfcrypt, security, cryptography",
|
keywords="wolfssl, wolfcrypt, security, cryptography",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
u"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
u"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
||||||
|
@ -80,6 +77,7 @@ setup(
|
||||||
u"Topic :: Software Development"
|
u"Topic :: Software Development"
|
||||||
],
|
],
|
||||||
|
|
||||||
setup_requires=["cffi"],
|
setup_requires=["cffi>=1.0.0"],
|
||||||
install_requires=["cffi"]
|
install_requires=["cffi>=1.0.0"],
|
||||||
|
cffi_modules=["./wolfcrypt/_build_ffi.py:ffibuilder"]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue