Skip to content

Commit 67d0dc0

Browse files
Add content type for long_description (#24)
1 parent 5d0255e commit 67d0dc0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ def read_all(f):
1212

1313
setup(
1414
name='redisgraph-bulk-loader',
15-
python_requires='>=3',
1615
version='0.8.1',
1716
description='RedisGraph Bulk Import Tool',
1817
long_description=read_all("README.md"),
18+
long_description_content_type='text/markdown',
1919
url='https://github.com/redisgraph/redisgraph-bulk-loader',
20+
python_requires='>=3',
2021
packages=find_packages(),
2122
install_requires=requirements,
2223
classifiers=[

0 commit comments

Comments
 (0)