Skip to content
Snippets Groups Projects
Commit 5d79043e authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Remove long description

parent 45187f47
No related branches found
No related tags found
No related merge requests found
Pipeline #8978 passed
......@@ -47,14 +47,7 @@ except DistributionNotFound:
""")
for module in ext_modules:
fobj.write("from . import {}\n".format(module.name.split('.')[1]))
try:
with open("README.rst") as fh:
long_description = fh.read()
except UnicodeDecodeError:
long_description = "jppy - Jpp Python Package"
# As of Python 3.6, CCompiler has a `has_flag` method.
# cf http://bugs.python.org/issue26689
......@@ -128,7 +121,7 @@ setup(
url='https://git.km3net.de/km3py/jppy',
description='Jpp Python Package',
packages=["jppy"],
long_description=long_description,
long_description="jppy - Jpp Python Package",
ext_modules=ext_modules,
install_requires=['pybind11>=2.4'],
setup_requires=['pybind11>=2.4', 'setuptools_scm'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment