Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
resolve
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
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
ift
resolve
Commits
78eb5bf1
Commit
78eb5bf1
authored
3 years ago
by
Philipp Arras
Browse files
Options
Downloads
Patches
Plain Diff
Prepare for pypi upload
parent
bbf01314
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!36
Pypi
Pipeline
#134409
passed
2 years ago
Stage: build_docker
Stage: testing
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
MANIFEST.in
+10
-0
10 additions, 0 deletions
MANIFEST.in
pyproject.toml
+6
-0
6 additions, 0 deletions
pyproject.toml
resolve/version.py
+1
-0
1 addition, 0 deletions
resolve/version.py
setup.py
+8
-3
8 additions, 3 deletions
setup.py
with
25 additions
and
3 deletions
MANIFEST.in
0 → 100644
+
10
−
0
View file @
78eb5bf1
prune .
include COPYING
include README.md
include pyproject.toml
include setup.py
recursive-include resolve *.py
recursive-include test *.py
recursive-include resolve_support *.h *.cc
This diff is collapsed.
Click to expand it.
pyproject.toml
0 → 100644
+
6
−
0
View file @
78eb5bf1
[project]
requires-python
=
">
=
3.7
"
[build-system]
requires
=
[
"setuptools >= 40.6.0"
,
"pybind11 >= 2.6.0"
,
"ducc0"
,
"matplotlib"
,
"h5py"
,
"mpi4py"
,
"python-casacore"
,
"scipy"
,
"nifty8"
]
build-backend
=
"setuptools.build_meta"
This diff is collapsed.
Click to expand it.
resolve/version.py
0 → 100644
+
1
−
0
View file @
78eb5bf1
This diff is collapsed.
Click to expand it.
setup.py
+
8
−
3
View file @
78eb5bf1
...
@@ -25,6 +25,8 @@ from glob import iglob
...
@@ -25,6 +25,8 @@ from glob import iglob
import
pybind11
import
pybind11
from
setuptools
import
Extension
,
find_packages
,
setup
from
setuptools
import
Extension
,
find_packages
,
setup
exec
(
open
(
'
resolve/version.py
'
).
read
())
tmp
=
os
.
getenv
(
"
DUCC0_CFLAGS
"
,
""
).
split
(
"
"
)
tmp
=
os
.
getenv
(
"
DUCC0_CFLAGS
"
,
""
).
split
(
"
"
)
user_cflags
=
[
x
for
x
in
tmp
if
x
!=
""
]
user_cflags
=
[
x
for
x
in
tmp
if
x
!=
""
]
tmp
=
os
.
getenv
(
"
DUCC0_LFLAGS
"
,
""
).
split
(
"
"
)
tmp
=
os
.
getenv
(
"
DUCC0_LFLAGS
"
,
""
).
split
(
"
"
)
...
@@ -125,16 +127,19 @@ extensions = [Extension("resolve_support",
...
@@ -125,16 +127,19 @@ extensions = [Extension("resolve_support",
_print_env
()
_print_env
()
__version__
=
"
0.0
"
setup
(
setup
(
name
=
"
resolve
"
,
name
=
"
resolve
"
,
version
=
__version__
,
author
=
"
Philipp Arras
"
,
author
=
"
Philipp Arras
"
,
author_email
=
"
parras@mpa-garching.mpg.de
"
,
author_email
=
"
parras@mpa-garching.mpg.de
"
,
description
=
"
Radio imaging with information field theory
"
,
description
=
"
Radio imaging with information field theory
"
,
url
=
"
https://gitlab.mpcdf.mpg.de/ift/resolve
"
,
url
=
"
https://gitlab.mpcdf.mpg.de/ift/resolve
"
,
packages
=
find_packages
(
include
=
[
"
resolve
"
,
"
resolve.*
"
]),
packages
=
find_packages
(
include
=
[
"
resolve
"
,
"
resolve.*
"
,
"
resolve_support
"
,
"
resolve_support.*
"
]),
zip_safe
=
True
,
zip_safe
=
True
,
dependency_links
=
[],
dependency_links
=
[],
install_requires
=
[
"
ducc0
"
,
"
matplotlib
"
,
"
h5py
"
,
"
mpi4py
"
,
"
python-casacore
"
,
"
scipy
"
]
,
# FIXME
nifty8
install_requires
=
[
"
ducc0
"
,
"
matplotlib
"
,
"
h5py
"
,
"
mpi4py
"
,
"
python-casacore
"
,
"
scipy
"
,
"
nifty8
"
],
ext_modules
=
extensions
,
ext_modules
=
extensions
,
entry_points
=
{
"
console_scripts
"
:
entry_points
=
{
"
console_scripts
"
:
[
[
...
@@ -143,7 +148,7 @@ setup(
...
@@ -143,7 +148,7 @@ setup(
]},
]},
license
=
"
GPLv3
"
,
license
=
"
GPLv3
"
,
classifiers
=
[
classifiers
=
[
"
Development Status ::
3
-
Alph
a
"
,
"
Development Status ::
4
-
Bet
a
"
,
"
Topic :: Utilities
"
,
"
Topic :: Utilities
"
,
"
License :: OSI Approved :: GNU General Public License v3
"
"
or later (GPLv3+)
"
,
"
License :: OSI Approved :: GNU General Public License v3
"
"
or later (GPLv3+)
"
,
],
],
...
...
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