Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nomad-lab
python-common
Commits
cd77139d
Commit
cd77139d
authored
9 years ago
by
Himanen, Lauri (himanel1)
Browse files
Options
Downloads
Patches
Plain Diff
Added a setup script for quick installation.
parent
0fcddd85
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/setup.py
+25
-0
25 additions, 0 deletions
python/setup.py
with
25 additions
and
0 deletions
python/setup.py
0 → 100644
+
25
−
0
View file @
cd77139d
"""
This is a setup script for those that are familiar with setuptooll. You can
also just setup the paths and necessary dependencies in any other way you wish.
"""
from
setuptools
import
setup
,
find_packages
#===============================================================================
def
main
():
# Start package setup
setup
(
name
=
"
nomadcore
"
,
version
=
"
0.1
"
,
description
=
"
Tools for NOMAD parser development
"
,
packages
=
find_packages
(),
install_requires
=
[
'
pint
'
,
'
numpy
'
,
],
zip_safe
=
False
)
# Run main function by default
if
__name__
==
"
__main__
"
:
main
()
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