forked from danielegrattarola/spektral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 915 Bytes
/
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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="spektral",
version="1.0.8",
packages=find_packages(),
install_requires=[
"joblib",
"lxml",
"networkx",
"numpy<1.20",
"pandas",
"requests",
"scikit-learn",
"scipy",
"tensorflow>=2.1.0",
"tqdm",
],
url="https://github.com/danielegrattarola/spektral",
license="MIT",
author="Daniele Grattarola",
author_email="daniele.grattarola@gmail.com",
description="Graph Neural Networks with Keras and Tensorflow 2.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)