Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iexcode
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
29id
iexcode
Commits
f5c3570b
Commit
f5c3570b
authored
2 years ago
by
jmcchesn
Browse files
Options
Downloads
Patches
Plain Diff
first commit
parents
No related branches found
No related tags found
1 merge request
!1
first commit
Pipeline
#542
failed
2 years ago
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
iexcode
+1
-0
1 addition, 0 deletions
iexcode
requirements.txt
+4
-0
4 additions, 0 deletions
requirements.txt
setup.py
+25
-0
25 additions, 0 deletions
setup.py
with
30 additions
and
0 deletions
iexcode
@
4dbba03b
Subproject commit 4dbba03bc69c58a08a1f36571ffb4fe67597d85a
This diff is collapsed.
Click to expand it.
requirements.txt
0 → 100644
+
4
−
0
View file @
f5c3570b
matplotlib
h5py
numpy
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
+
25
−
0
View file @
f5c3570b
import
os
from
setuptools
import
setup
,
find_packages
install_requires
=
[]
with
open
(
'
requirements.txt
'
)
as
reqs
:
for
line
in
reqs
.
readlines
():
req
=
line
.
strip
()
if
not
req
or
req
.
startswith
(
'
#
'
):
continue
install_requires
.
append
(
req
)
setup
(
name
=
'
IEX_beamline
'
,
description
=
'
python scripts to run 29id of the APS
'
,
url
=
'
https://github.com/xxx
'
,
maintainer
=
'
Jessica McChesney
'
,
maintainer_email
=
'
jmcchesn@anl.gov
'
,
version
=
'
0.0.1
'
,
packages
=
find_packages
(),
install_requires
=
install_requires
,
scripts
=
[],
dependency_links
=
[],
package_data
=
{
''
:
[]}
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment