-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 964 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
33
34
35
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependencies = [
"decorator",
"memory_profiler",
"traintrack",
"trackml@ https://github.com/LAL/trackml-library/tarball/master#egg=trackml-3",
]
setup(
name="exatrkx-pipeline",
version="0.4.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",
)