diff --git a/MANIFEST.in b/MANIFEST.in index 9b7943b..75be942 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,2 @@ include phiml/VERSION -include documentation/Package_Info.md recursive-include phiml/backend/tf/cuda/build * \ No newline at end of file diff --git a/setup.py b/setup.py index 72a0056..e81c28c 100644 --- a/setup.py +++ b/setup.py @@ -120,13 +120,6 @@ def run(self): print(f"Compilation complete. See {logfile_path} for details.") -try: - with open(join(dirname(__file__), 'docs/Package_Info.md'), mode='r', encoding='utf-8') as readme: - long_description = readme.read() -except FileNotFoundError: - long_description = "" - pass - with open(join(dirname(__file__), 'phiml', 'VERSION'), 'r') as version_file: version = version_file.read() @@ -145,8 +138,8 @@ def run(self): 'tf_cuda': CudaCommand, }, description='Unified API for machine learning', - long_description=long_description, - long_description_content_type='text/markdown', + long_description_content_type="text/x-rst", + long_description="""Due to a PyPI issue, the description cannot be displayed. Please visit the homepage at https://github.com/tum-pbs/PhiML""", keywords=['Machine Learning', 'Deep Learning', 'Math', 'Linear systems', 'Sparse', 'Tensor', 'Named dimensions'], license='MIT', author='Philipp Holl',