-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.1 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependencies = [
"numpy",
"scipy",
"pandas",
"matplotlib",
"sklearn",
"pyyaml>=5.1",
"pytorch-lightning",
"decorator",
"more_itertools",
"simple_slurm",
"memory_profiler",
"traintrack",
"trackml@ https://github.com/LAL/trackml-library/tarball/master#egg=trackml-3",
]
setup(
name="exatrkx-pipeline",
version="0.3.0",
description="Models, pipelines, and utilities for solving tracking problems with machine learning.",
author="Daniel Murnane",
install_requires=dependencies,
packages=find_packages(include=["examples", "src", "src.*"]),
entry_points={"console_scripts": []},
long_description=read("README.md"),
license="Apache License, Version 2.0",
keywords=[
"graph networks",
"track finding",
"tracking",
"seeding",
"GNN",
"machine learning",
],
url="https://github.com/HSF-reco-and-software-triggers/Tracking-ML-Exa.TrkX",
)