Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
LBN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
1
Merge Requests
1
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3pia
LBN
Commits
7653d396
Commit
7653d396
authored
Feb 22, 2019
by
Marcel Rieger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update packaging.
parent
c57cdea9
Pipeline
#107098
passed with stages
in 35 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
16 deletions
+28
-16
__version__.py
__version__.py
+14
-0
lbn.py
lbn.py
+0
-8
setup.py
setup.py
+14
-8
No files found.
__version__.py
0 → 100644
View file @
7653d396
# coding: utf-8
"""
TensorFlow implementation of the Lorentz Boost Network (LBN). https://arxiv.org/abs/1812.09722.
"""
__author__
=
"Marcel Rieger"
__copyright__
=
"Copyright 2018-2019, Marcel Rieger"
__license__
=
"BSD"
__credits__
=
[
"Martin Erdmann"
,
"Erik Geiser"
,
"Yannik Rath"
,
"Marcel Rieger"
]
__contact__
=
"https://git.rwth-aachen.de/3pia/lbn"
__email__
=
"marcel.rieger@cern.ch"
__version__
=
"1.0.1"
lbn.py
View file @
7653d396
...
...
@@ -5,14 +5,6 @@ TensorFlow implementation of the Lorentz Boost Network (LBN). https://arxiv.org/
"""
__author__
=
"Marcel Rieger"
__copyright__
=
"Copyright 2018-2019, Marcel Rieger"
__license__
=
"BSD"
__credits__
=
[
"Martin Erdmann"
,
"Erik Geiser"
,
"Yannik Rath"
,
"Marcel Rieger"
]
__contact__
=
"https://git.rwth-aachen.de/3pia/lbn"
__email__
=
"marcel.rieger@cern.ch"
__version__
=
"1.0.1"
__all__
=
[
"LBN"
,
"FeatureFactoryBase"
,
"FeatureFactory"
]
...
...
setup.py
View file @
7653d396
...
...
@@ -34,14 +34,20 @@ with open(os.path.join(this_dir, "README.md"), "r") as f:
with
open
(
os
.
path
.
join
(
this_dir
,
"requirements.txt"
),
"r"
)
as
f
:
install_requires
=
[
line
.
strip
()
for
line
in
f
.
readlines
()
if
line
.
strip
()]
# load package infos
pkg
=
{}
with
open
(
os
.
path
.
join
(
this_dir
,
"__version__.py"
),
"r"
)
as
f
:
exec
(
f
.
read
(),
pkg
)
setuptools
.
setup
(
name
=
lbn
.
__name__
,
version
=
lbn
.
__version__
,
author
=
lbn
.
__author__
,
author_email
=
lbn
.
__email__
,
description
=
lbn
.
__doc__
.
strip
().
split
(
"
\n
"
)[
0
].
strip
(),
license
=
lbn
.
__license__
,
url
=
lbn
.
__contact__
,
name
=
"lbn"
,
version
=
pkg
[
"__version__"
]
,
author
=
pkg
[
"__author__"
]
,
author_email
=
pkg
[
"__email__"
]
,
description
=
pkg
[
"__doc__"
]
.
strip
().
split
(
"
\n
"
)[
0
].
strip
(),
license
=
pkg
[
"__license__"
]
,
url
=
pkg
[
"__contact__"
]
,
keywords
=
keywords
,
classifiers
=
classifiers
,
long_description
=
long_description
,
...
...
@@ -49,6 +55,6 @@ setuptools.setup(
install_requires
=
install_requires
,
python_requires
=
">=2.7"
,
zip_safe
=
False
,
py_modules
=
[
lbn
.
__name__
],
py_modules
=
[
"lbn"
],
data_files
=
[(
"."
,
[
"LICENSE"
,
"requirements.txt"
,
"README.md"
])],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment