-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
65 lines (58 loc) · 1.63 KB
/
setup.py
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
57
58
59
60
61
62
63
64
65
from setuptools import find_packages, setup
url = "https://github.com/SherylHYX/pytorch_geometric_signed_directed"
__version__ = '0.25.0'
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
install_requires = [
"torch",
"torch_sparse",
"scikit-learn",
"torch_geometric",
"numpy",
"networkx<2.7",
"scipy"
]
setup_requires = ["pytest-runner"]
tests_require = ["pytest", "pytest-cov", "mock"]
keywords = [
"machine-learning",
"deep-learning",
"deeplearning",
"deep learning",
"machine learning",
"signal processing",
"signed graph",
"graph",
"directed graph",
"embedding",
"clustering",
"graph convolution",
"graph neural network",
"representation learning",
"learning",
]
setup(
name="torch_geometric_signed_directed",
packages=find_packages(),
version=__version__,
license="MIT",
description="An Extension Library for PyTorch Geometric on signed and directed networks.",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
author="Yixuan He",
author_email="[email protected]",
url=url,
download_url='{}/archive/{}.tar.gz'.format(url, __version__),
keywords=keywords,
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
python_requires=">=3.7",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
)