-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·56 lines (52 loc) · 1.57 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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import find_packages
from setuptools import setup
description="Use Graph Network to perform data analysis"
setup(
name="root_gnn",
version="2.0.1",
description="Library for using Graph Nural Networks in HEP analysis",
long_description=description,
author="Xiangyang Ju",
license="Apache License, Version 2.0",
keywords=["graph networks", "HEP", "analysis", "machine learning"],
url="https://github.com/xju2/root_gnn",
packages=find_packages(),
include_package_data=True,
install_requires=[
"tensorflow>=2.4",
"graph_nets@ https://github.com/deepmind/graph_nets/tarball/master",
"future",
"networkx",
"numpy",
"scipy",
"pandas",
"tables",
"setuptools",
"six",
"matplotlib",
"sklearn",
'pyyaml>=5.1',
'tqdm',
],
package_data = {
"root_gnn": ["config/*.yaml"]
},
setup_requires=[],
classifiers=[
"Programming Language :: Python :: 3.7",
],
scripts=[
'root_gnn/scripts/train_gnn',
'root_gnn/scripts/create_tfrecord',
'root_gnn/scripts/evaluate_global_classifier',
'root_gnn/scripts/calculate_metrics',
'root_gnn/scripts/evaluate_w_qcd_classifier',
'root_gnn/scripts/evaluate_wtagger',
'root_gnn/scripts/calculate_wtagger_metrics',
'root_gnn/scripts/split_files_for_nn',
'root_gnn/scripts/view_checkpoint',
],
)