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 84423ba commit 1334fb5Copy full SHA for 1334fb5
setup.py
@@ -8,6 +8,11 @@
8
)
9
import glob
10
11
+from os import path
12
+this_directory = path.abspath(path.dirname(__file__))
13
+with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
14
+ long_description = f.read()
15
+
16
TORCH_MAJOR = int(torch.__version__.split(".")[0])
17
TORCH_MINOR = int(torch.__version__.split(".")[1])
18
extra_compile_args = []
@@ -54,4 +59,6 @@
54
59
install_requires=requirements,
55
60
ext_modules=ext_modules,
56
61
cmdclass={"build_ext": BuildExtension},
62
+ long_description=long_description,
63
+ long_description_content_type='text/markdown'
57
64
0 commit comments