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.
1 parent eafae9b commit 0c660fbCopy full SHA for 0c660fb
setup.py
@@ -2,11 +2,16 @@
2
3
# ToDo: Add versioneer
4
5
+with open("README.md", "r") as fh:
6
+ long_description = fh.read()
7
+
8
setup(name="pydantic_bind",
- version="1.0.1",
9
+ version="1.0.2",
10
description="C++/pybind generation from Pydantic classes",
11
author="Nick Young",
12
license=r"https://www.apache.org/licenses/LICENSE-2.0",
13
+ long_description=long_description,
14
+ long_description_content_type="text/markdown",
15
packages=find_packages(),
16
include_package_data=True,
17
install_requires=[
0 commit comments