forked from arangoml/fastgraphml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (67 loc) · 1.91 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
66
67
68
69
70
71
72
from setuptools import setup
with open("./README.md", encoding="utf-8") as fp:
long_description = fp.read()
dev_requirements = [
"black==22.8.0",
"coveralls>=3.3.1",
"pytest==7.1.3",
"sphinx==5.1.1",
"pre-commit==2.20.0",
"types-requests==2.28.11.2",
"flake8==5.0.4",
"pytest==7.1.3",
"pytest-cov==4.0.0",
"isort==5.10.1",
"mypy==0.982",
"types-setuptools==65.5.0.2",
"bandit==1.7.4",
]
setup(
name="fastgraphml",
author="Sachin Sharma",
author_email="[email protected]",
description="Given an input graph the library generates graph embeddings using Low-Code built on top of PyG", # noqa: E501
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/arangoml/fastgraphml",
keywords=[
"arangodb",
"pyg",
"graph deep learning",
"graph embeddings",
"pytorch geometric",
"graph machine learning",
"graph neural networks",
],
packages=["fastgraphml"],
include_package_data=True,
python_requires=">=3.8",
license="MIT License",
install_requires=[
"requests==2.28.1",
"sklearn==0.0",
"matplotlib==3.5.2",
"seaborn==0.11.2",
"matplotlib-inline==0.1.2",
"numpy==1.22.4",
"tqdm==4.64.0",
"umap-learn==0.5.3",
"adbpyg-adapter==1.1.0",
"python-arango==7.4.1",
"setuptools==45",
"arango_datasets==1.0.0",
],
extras_require={
"dev": dev_requirements,
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
"Typing :: Typed",
],
)