-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (46 loc) · 1.49 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
from setuptools import setup, find_packages
import os
ENV = os.environ.get('COOL_GRAPH_ENV', 'PUBLIC')
NAME = 'cool_graph'
DESCRIPTION = 'Python library for building Graph Neural Network by few steps'
LONG_DESCRIPTION = 'Python library for building Graph Neural Network by few steps, preproccesing graph data, logging all experiments with Mlflow. Including the default configuration for multitarget learning with up to 2 groups of node types'
LICENSE = 'MIT'
VERSION = '0.0.3'
DEPENDENCIES = [
'mlflow>=2.1.1',
'numpy>=1.19.5',
'omegaconf==2.3.0',
'pandas>=1.2.4',
'pyarrow>=6.0.1',
'tqdm>=4.64.0',
'urllib3>=1.26.9',
'hydra-core>=1.3.0',
'protobuf==3.20.0',
'loguru==0.6.0',
'optuna==3.6.1',
'ogb==1.3.6'
]
setup(
name=NAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
license=LICENSE,
version=VERSION,
packages=find_packages(),
install_requires=DEPENDENCIES,
package_data={
"cool_graph.config": ["*.yaml"],
"cool_graph.config.data": ["*.yaml"],
"cool_graph.config.logging": ["*.yaml"],
"cool_graph.config.metrics": ["*.yaml"],
"cool_graph.config.model_params": ["*.yaml"],
"cool_graph.config.training": ["*.yaml"],
},
include_package_data=True,
entry_points={
'console_scripts': [
'coolrun = cool_graph.cli.run:main',
'get_config = cool_graph.cli.config:main',
]
}
)