forked from HEPTrkX/heptrkx-gnn-tracking
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
72 lines (68 loc) · 1.95 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 __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 reconstruct tracks"
setup(
name="heptrkx",
version="1.0.0",
description="Library for building tracks with Graph Nural Networks.",
long_description=description,
author="Xiangyang Ju",
author_email="[email protected]",
license="Apache License, Version 2.0",
keywords=["graph networks", "track formation", "tracking", "machine learning"],
url="https://github.com/xju2/hep-gnn-tracking",
packages=find_packages(),
include_package_data=True,
install_requires=[
#"tensorflow >= 2.2",
"graph_nets>=1.1",
'gast',
"future",
"networkx>=2.4",
"numpy",
"scipy",
"pandas",
"setuptools",
"six",
"matplotlib",
'sklearn',
'pyyaml>=5.1',
'trackml@ https://github.com/LAL/trackml-library/tarball/master#egg=trackml-3',
'tables',
'more-itertools',
# 'h5py',
],
package_data = {
"heptrkx": ["config/*.yaml"]
},
extras_require={
},
setup_requires=['trackml'],
classifiers=[
"Programming Language :: Python :: 3.7",
],
scripts=[
'scripts/event_summary',
# preparation
'scripts/create_tfrec_doublets',
# evaluate triplets/seeds
'scripts/create_seed_inputs',
'scripts/seeding_perf',
# event studies
'scripts/duplicated_hits',
# GNN training
'scripts/train_nx_graph_single',
'scripts/train_nx_graph_distributed',
# GNN evaluation
'scripts/evaluate_edge_classifier',
# track candidates
'scripts/tracks_from_doublet_graph',
# utils
'scripts/list_evtids',
'scripts/view_checkpoints',
'scripts/view_training_log',
],
)