forked from exatrkx/exatrkx-ctd2020
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (36 loc) · 1.17 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
from setuptools import find_packages
from setuptools import setup
import fileinput
from setuptools.command.install import install
import os
description="Use Graph Network to reconstruct tracks"
dependencies = [
"numpy",
"scipy",
"pandas",
"setuptools",
"matplotlib",
'sklearn',
'pyyaml>=5.1',
'trackml@ https://github.com/LAL/trackml-library/tarball/master#egg=trackml-3'
]
setup(
name="ExatrkX-CTD2020",
version="0.0.1",
description="Library for working with TrackML data to produce seeds and track labels.",
long_description=description,
author="Daniel Murnane, on behalf of the Exa.Trkx Collaboration",
license="Apache License, Version 2.0",
keywords=["graph networks", "track finding", "tracking", "seeding", "GNN", "machine learning"],
url="https://github.com/exatrkx/exatrkx-work",
packages=find_packages(),
install_requires=dependencies,
dependency_links=['https://download.pytorch.org/whl/torch_stable.html'],
setup_requires=['trackml'],
classifiers=[
"Programming Language :: Python :: 3.7",
],
scripts=[
'scripts/evaluate_gnn'
],
)