Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FraLotito authored Jun 9, 2023
1 parent 57c04c9 commit 08117b0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,22 @@
import os
from setuptools import find_packages, setup

def read(*paths, **kwargs):
content = ""
with io.open(
os.path.join(os.path.dirname(__file__), *paths),
encoding=kwargs.get("encoding", "utf8"),
) as open_file:
content = open_file.read().strip()
return content

setup(
name = 'hypergraphx',
version = '1.4.1',
version = '1.4.2',
license='BSD-3-Clause license',
description = 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
long_description= 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
description = 'HGX is a multi-purpose, open-source Python library for higher-order network analysis',
long_description=read("README.md"),
long_description_content_type="text/markdown",
author = 'HGX-Team',
author_email = 'lotitoqf@gmail.com',
url = 'https://github.com/HGX-Team/hypergraphx',
Expand Down

0 comments on commit 08117b0

Please sign in to comment.