Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AHFpy
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Sebastiano Bernuzzi
AHFpy
Commits
3e38532a
Commit
3e38532a
authored
1 year ago
by
bernuzzi
Browse files
Options
Downloads
Patches
Plain Diff
Fix at setup.py and package
parent
d2330d8d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
AHFpy/__init__.py
+1
-1
1 addition, 1 deletion
AHFpy/__init__.py
setup.py
+5
-2
5 additions, 2 deletions
setup.py
with
6 additions
and
3 deletions
AHFpy/__init__.py
+
1
−
1
View file @
3e38532a
#!/usr/bin/env python
from
.
import
AHF
,
KerrSchild
,
data
,
data_athena
from
.
import
AHF
,
KerrSchild
,
Puncture
,
data
,
data_athena
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
2
View file @
3e38532a
...
...
@@ -2,6 +2,7 @@
from
setuptools
import
setup
,
find_packages
from
distutils.extension
import
Extension
import
numpy
try
:
from
Cython.Distutils
import
build_ext
...
...
@@ -22,9 +23,11 @@ else:
Extension
(
"
AHFpy.interp_3d
"
,
[
"
AHFpy/interp_3d.c
"
]),
]
setup
(
name
=
'
AHFpy
'
,
version
=
'
0.0
'
,
version
=
'
1.
0.0
'
,
description
=
'
Apparent Horizon Finder in Python
'
,
author
=
'
SB
'
,
author_email
=
'
sebastiano.bernuzzi@uni-jena.de
'
,
...
...
@@ -32,5 +35,5 @@ setup(
packages
=
find_packages
(),
requires
=
[
'
h5py
'
,
'
numpy
'
,
'
scipy
'
,
'
matplotlib
'
],
cmdclass
=
cmdclass
,
ext_modules
=
ext_modules
,
ext_modules
=
ext_modules
,
include_dirs
=
[
numpy
.
get_include
()]
)
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