-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
129 lines (121 loc) · 3.02 KB
/
pyproject.toml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = [
"hatchling>=1.13.0",
"hatch-vcs>=0.3.0",
]
build-backend = "hatchling.build"
[project]
name = "EnergyFlow"
dynamic = ["version"]
description = "Python package for the Energy Flow suite of particle physics tools"
readme = "README.md"
requires-python = ">= 3.9"
authors = [
{ name = "Patrick T. Komiske III", email = "pkomiske@mit.edu" },
]
maintainers = [
{ name = "Rikab Gambhir", email = "rikab@mit.edu" },
{ name = "Jordan Ashley", email = "jordan.ashley@cern.ch" },
]
keywords = [
"CMS",
"Deep Sets",
"EFM",
"EFN",
"EFP",
"EMD",
"Earth Mover Distance",
"Energy Flow Moment",
"Energy Flow Network",
"Energy Flow Polynomial",
"MOD",
"Open Data",
"PFN",
"Particle Flow Network",
"Wasserstein",
"architecture",
"collider",
"correlator",
"energy flow",
"energyflow",
"jets",
"metric",
"multigraph",
"neural network",
"open",
"physics",
"polynomial",
"substructure",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"h5py >= 2.9.0,!=3.11.0",
"importlib-metadata>=1.4.0; python_version<\"3.8\"",
"numpy >= 1.17.0",
"wasserstein >= 1.0.1",
]
[project.optional-dependencies]
all = [
"igraph",
"scikit-learn",
"tensorflow >= 2.5.0",
]
archs = [
"scikit-learn",
"tensorflow >= 2.5.0",
]
examples = [
"matplotlib",
"scikit-learn",
"tensorflow >= 2.5.0",
]
generation = [
"igraph",
]
tests = [
"igraph",
"pot >= 0.8.0",
"pytest",
"scikit-learn",
"tensorflow >= 2.5.0",
]
[project.urls]
Homepage = "https://energyflow.network"
Issues = "https://github.com/thaler-lab/EnergyFlow/issues"
"Source Code" = "https://github.com/thaler-lab/EnergyFlow"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/energyflow/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["src/energyflow"]