We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c96111 + af47b6b commit b7192a8Copy full SHA for b7192a8
setup.py
@@ -1,14 +1,13 @@
1
-from setuptools import find_packages, setup
2
-
+from setuptools import setup, find_packages
3
from meilisearch.version import __version__
4
5
-with open("README.md", encoding="utf8") as fh:
+with open("README.md", "r", encoding="utf8") as fh:
6
long_description = fh.read()
7
8
setup(
9
install_requires=[
10
"requests",
11
- "camel_converter"
+ "camel-converter[pydantic]"
12
],
13
name="meilisearch",
14
version=__version__,
@@ -28,6 +27,8 @@
28
27
"Programming Language :: Python :: 3.8",
29
"Programming Language :: Python :: 3.9",
30
"Programming Language :: Python :: 3.10",
+ ],
31
+ "Programming Language :: Python :: 3.10",
32
"License :: OSI Approved :: MIT License",
33
"Operating System :: OS Independent",
34
0 commit comments