diff --git a/Cargo.toml b/Cargo.toml index e108ee4..f61f2f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "tantivy-py" -version = "0.1.0" +version = "0.10.1" authors = ["Damir Jelić "] edition = "2018" license = "MIT" [lib] name = "tantivy" -crate-type = ["dylib"] +crate-type = ["cdylib"] [dependencies] chrono = "0.4" diff --git a/setup.py b/setup.py index 91ddbe2..0be28e6 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ from setuptools import setup +from os import path try: from setuptools_rust import Binding, RustExtension @@ -6,10 +7,21 @@ except ImportError: print("Please install setuptools-rust package") raise SystemExit(1) +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + + setup( name="tantivy", - version="0.9.1", + version="0.10.1", rust_extensions=[RustExtension("tantivy.tantivy", binding=Binding.PyO3)], packages=["tantivy"], + description=("Python bindings for the Tantivy full-text search engine " + "library"), + long_description=long_description, + long_description_content_type="text/markdown", + license="MIT", + zip_safe=False, )