Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TetraX
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor 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
Micromagnetic modeling
TetraX
Commits
e2542f12
Commit
e2542f12
authored
3 years ago
by
Koerber, Lukas (FWIN-C) - 108045
Browse files
Options
Downloads
Patches
Plain Diff
Include long description and requirements (need to be relaxed in the future!)
parent
a68a2007
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+17
-1
17 additions, 1 deletion
setup.py
with
17 additions
and
1 deletion
setup.py
+
17
−
1
View file @
e2542f12
...
...
@@ -6,6 +6,9 @@ from setuptools import Extension, setup, find_packages
fem_core_path
=
Path
(
'
src/tetrax/core/fem_core
'
).
resolve
()
with
open
(
"
README.md
"
,
"
r
"
)
as
fh
:
long_description
=
fh
.
read
()
c_sourcefiles
=
list
(
map
(
lambda
p
:
str
(
fem_core_path
/
p
),
[
'
dense2D_onthefly.c
'
,
'
bessel_K1.c
'
,
...
...
@@ -36,5 +39,18 @@ setup(
ext_modules
=
cythonize
(
extensions
,
language_level
=
3
),
py_modules
=
[
"
tetrax
"
],
package_dir
=
{
""
:
"
src
"
},
description
=
"
Finite-element micromagnetic modeling package.
"
description
=
"
Finite-element micromagnetic modeling package.
"
,
long_description
=
long_description
,
long_description_content_type
=
"
text/markdown
"
,
install_requires
=
[
"
Cython == 0.29.25
"
,
"
k3d == 2.11.0
"
,
"
meshio == 4.4.6
"
,
"
numpy == 1.20.3
"
,
"
pandas == 1.3.4
"
,
"
pygmsh == 7.1.14
"
,
"
scipy == 1.7.3
"
,
"
setuptools == 59.4.0
"
,
"
tqdm == 4.62.3
"
,
]
)
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