forked from iesl/geometric-graph-embedding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 936 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
"""
Scripts to generate graphs, train and evaluate graph representations
"""
import fastentrypoints
from setuptools import find_packages, setup
setup(
name="box_training_methods",
version="0.1",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={"": "src"},
description="Scripts to generate graphs, train and evaluate graph representations",
install_requires=[
"Click>=7.1.2",
"networkx==2.8.8",
"scipy",
"scikit-learn",
"numpy",
"xopen",
"toml",
"torch==1.11.0", # breaks with
"pandas",
"loguru",
"tqdm",
"wandb", # TODO: break out this dependency
],
extras_require={
"price_generation": ["graph_tool"],
"test": ["pytest", "hypothesis"],
},
entry_points={"console_scripts": ["box_training_methods = box_training_methods.__main__:main"]},
)