Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gext
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
Michele Nottoli
gext
Commits
867b7658
Commit
867b7658
authored
1 year ago
by
Michele Nottoli
Browse files
Options
Downloads
Patches
Plain Diff
Added setup.py and prototype for a test.
parent
b0034d8b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
setup.py
+15
-0
15 additions, 0 deletions
setup.py
tests/test_grassmann.py
+9
-0
9 additions, 0 deletions
tests/test_grassmann.py
with
24 additions
and
0 deletions
setup.py
0 → 100644
+
15
−
0
View file @
867b7658
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"
grext
"
,
version
=
"
0.1.0
"
,
packages
=
find_packages
(),
install_requires
=
[
"
numpy
"
],
author
=
"
Michele Nottoli
"
,
description
=
"
Tools for generating new guesses for SCF calculations.
"
,
classifiers
=
[
"
Programming Language :: Python :: 3
"
,
"
License :: OSI Approved :: MIT License
"
,
"
Operating System :: OS Independent
"
,
],
)
This diff is collapsed.
Click to expand it.
tests/test_grassmann.py
0 → 100644
+
9
−
0
View file @
867b7658
import
os
import
sys
import
numpy
as
np
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
..
'
)))
import
grext
def
test_grassmann
():
grext
.
Extrapolator
(
10
,
10
,
10
,
10
)
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