forked from EdisonLeeeee/GraphGallery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (52 loc) · 1.56 KB
/
setup.py
File metadata and controls
executable file
·56 lines (52 loc) · 1.56 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
VERSION = "0.4.2"
url = 'https://github.com/EdisonLeeeee/GraphGallery'
install_requires = [
'torch',
'tensorflow>=2.1.2',
'networkx==2.3',
'metis==0.2a4',
'scipy>=1.4.1',
'numpy>=1.17.4',
'gensim>=3.8.0',
'texttable>=1.6.2',
'numba==0.46.0',
'llvmlite==0.30',
'tqdm>=4.40.2',
'scikit_learn>=0.22',
]
setup_requires = ['pytest-runner']
tests_require = ['pytest', 'pytest-cov']
setup(
name='graphgallery',
version=VERSION,
description='Geometric Deep Learning Extension Library for TensorFlow and PyTorch',
author='Jintang Li',
author_email='cnljt@outlook.com',
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, VERSION),
keywords=[
'tensorflow',
'pytorch',
'geometric-deep-learning',
'graph-neural-networks',
],
python_requires='>=3.7',
license="MIT LICENSE",
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
packages=find_packages(exclude=("examples", "imgs", "scripts")),
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent"
],
)