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
f2aed125
Commit
f2aed125
authored
Dec 23, 2018
by
Marcel Rieger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pypi setup files.
parent
164bf17b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
requirements.txt
requirements.txt
+0
-0
setup.py
setup.py
+54
-0
No files found.
requirements.txt
0 → 100644
View file @
f2aed125
setup.py
0 → 100644
View file @
f2aed125
# coding: utf-8
import
os
import
setuptools
import
lbn
this_dir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
keywords
=
[
"neural network"
,
"lorentz"
,
"lorentz transformation"
,
"lorentz boost"
,
"autonomous"
,
"feature"
,
"feature engineering"
,
"autonomous engineering"
,
"hep"
,
"four momenta"
,
"four vectors"
,
]
classifiers
=
[
"Programming Language :: Python"
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 3"
,
"Development Status :: 4 - Beta"
,
"Operating System :: OS Independent"
,
"License :: OSI Approved :: BSD License"
,
"Intended Audience :: Developers"
,
"Intended Audience :: Science/Research"
,
"Intended Audience :: Information Technology"
,
]
# read the readme file
with
open
(
os
.
path
.
join
(
this_dir
,
"README.md"
),
"r"
)
as
f
:
long_description
=
f
.
read
()
# load installation requirements
with
open
(
os
.
path
.
join
(
this_dir
,
"requirements.txt"
),
"r"
)
as
f
:
install_requires
=
[
line
.
strip
()
for
line
in
f
.
readlines
()
if
line
.
strip
()]
setuptools
.
setup
(
name
=
lbn
.
__name__
,
version
=
lbn
.
__version__
,
author
=
lbn
.
__author__
,
author_email
=
lbn
.
__email__
,
description
=
lbn
.
__doc__
.
strip
(),
license
=
lbn
.
__license__
,
url
=
lbn
.
__contact__
,
keywords
=
keywords
,
classifiers
=
classifiers
,
long_description
=
long_description
,
long_description_content_type
=
"text/markdown"
,
install_requires
=
install_requires
,
python_requires
=
">=2.7"
,
zip_safe
=
False
,
py_modules
=
[
lbn
.
__name__
],
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