update setup.py
This commit is contained in:
parent
2528ace020
commit
66d25e9554
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -73,7 +73,7 @@ else:
|
||||||
setup(
|
setup(
|
||||||
name="lbry-rocksdb",
|
name="lbry-rocksdb",
|
||||||
version=version,
|
version=version,
|
||||||
keywords=['rocksdb', 'static', 'build'],
|
keywords=['rocksdb', 'lbry-rocksdb', 'python-rocksdb', 'leveldb', 'embedded', 'database'],
|
||||||
description="Python bindings for RocksDB",
|
description="Python bindings for RocksDB",
|
||||||
long_description=open("README.md").read(),
|
long_description=open("README.md").read(),
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
@ -83,7 +83,7 @@ setup(
|
||||||
license='BSD License',
|
license='BSD License',
|
||||||
python_requires=">=3.7.0",
|
python_requires=">=3.7.0",
|
||||||
package_dir={'rocksdb': 'rocksdb'},
|
package_dir={'rocksdb': 'rocksdb'},
|
||||||
packages=find_packages('.'),
|
packages=find_packages(exclude=('tests',)),
|
||||||
ext_modules=cythonize([Extension(
|
ext_modules=cythonize([Extension(
|
||||||
'rocksdb._rocksdb',
|
'rocksdb._rocksdb',
|
||||||
SOURCES,
|
SOURCES,
|
||||||
|
|
Loading…
Reference in a new issue