File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
import os
3
3
from setuptools import find_packages , setup
4
4
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
+
5
14
setup (
6
15
name = 'hypergraphx' ,
7
- version = '1.4.1 ' ,
16
+ version = '1.4.2 ' ,
8
17
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" ,
11
21
author = 'HGX-Team' ,
12
22
author_email = '[email protected] ' ,
13
23
url = 'https://github.com/HGX-Team/hypergraphx' ,
You can’t perform that action at this time.
0 commit comments