Merge pull request #2 from rh-marketingops/build-requires-cython
Require cython in the build-system
This commit is contained in:
commit
7e70ea8495
2 changed files with 7 additions and 3 deletions
6
pyproject.toml
Normal file
6
pyproject.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[build-system]
|
||||
requires = [
|
||||
"Cython >= 0.20",
|
||||
"setuptools >= 58.3",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
2
setup.py
2
setup.py
|
@ -82,8 +82,6 @@ setup(
|
|||
url="https://github.com/lbryio/lbry-rocksdb",
|
||||
license='BSD License',
|
||||
python_requires=">=3.7.0",
|
||||
setup_requires=['setuptools>=25', 'Cython>=0.20'],
|
||||
install_requires=['setuptools>=25'],
|
||||
package_dir={'rocksdb': 'rocksdb'},
|
||||
packages=find_packages('.'),
|
||||
ext_modules=cythonize([Extension(
|
||||
|
|
Loading…
Reference in a new issue