We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3a122a commit 77c93acCopy full SHA for 77c93ac
2 files changed
MANIFEST.in
@@ -1,3 +1,5 @@
1
include pykonal/*.pyx
2
include pykonal/*.pxd
3
include pykonal/*.cpp
4
+include pykonal/data
5
+include README.md
setup.py
@@ -45,6 +45,7 @@
45
# Import the README and use it as the long-description.
46
# Note: this will only work if "README.md" is present in your MANIFEST.in file!
47
try:
48
+ raise FileNotFoundError
49
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
50
long_description = "\n" + f.read()
51
except FileNotFoundError:
@@ -62,7 +63,7 @@
62
63
version=about["__version__"],
64
description=description,
65
long_description=long_description,
- long_description_content_type="text/markdown",
66
+ #long_description_content_type="text/markdown",
67
author=author,
68
author_email=email,
69
python_requires=requires_python,
0 commit comments