-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 781 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import os
from setuptools import setup, find_packages
# get __version__
ver_file = os.path.join('hyperg', 'version.py')
with open(ver_file) as f:
exec(f.read())
install_requires = [
'numpy',
'cvxpy>=1.0',
'matplotlib',
'scipy',
'scikit_learn'
]
setup(
name="hyperg",
version=__version__,
description='A python toolbox for hypergraph learning',
author='Haojie Lin',
author_email='linhj18@mails.tsinghua.edu.cn',
url='https://github.com/iMoonLab/THU-HyperG',
install_requires=install_requires,
packages=find_packages(exclude=['test', 'examples']),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)