Skip to content

Commit 08117b0

Browse files
authored
Update setup.py
1 parent 57c04c9 commit 08117b0

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

setup.py

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,22 @@
22
import os
33
from setuptools import find_packages, setup
44

5+
def read(*paths, **kwargs):
6+
content = ""
7+
with io.open(
8+
os.path.join(os.path.dirname(__file__), *paths),
9+
encoding=kwargs.get("encoding", "utf8"),
10+
) as open_file:
11+
content = open_file.read().strip()
12+
return content
13+
514
setup(
615
name = 'hypergraphx',
7-
version = '1.4.1',
16+
version = '1.4.2',
817
license='BSD-3-Clause license',
9-
description = 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
10-
long_description= 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
18+
description = 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
19+
long_description=read("README.md"),
20+
long_description_content_type="text/markdown",
1121
author = 'HGX-Team',
1222
author_email = '[email protected]',
1323
url = 'https://github.com/HGX-Team/hypergraphx',

0 commit comments

Comments
 (0)