GreeDS 2.0__tar.gz → 2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {greeds-2.0 → greeds-2.3}/GreeDS.egg-info/PKG-INFO +9 -8
- {greeds-2.0 → greeds-2.3}/GreeDS.egg-info/SOURCES.txt +1 -1
- greeds-2.3/GreeDS.egg-info/requires.txt +7 -0
- {greeds-2.0 → greeds-2.3}/PKG-INFO +9 -8
- greeds-2.3/pyproject.toml +34 -0
- greeds-2.0/GreeDS.egg-info/requires.txt +0 -6
- greeds-2.0/setup.py +0 -27
- {greeds-2.0 → greeds-2.3}/GreeDS.egg-info/dependency_links.txt +0 -0
- {greeds-2.0 → greeds-2.3}/GreeDS.egg-info/top_level.txt +0 -0
- {greeds-2.0 → greeds-2.3}/setup.cfg +0 -0
@@ -1,18 +1,19 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: GreeDS
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.3
|
4
4
|
Summary: This package is a ADI or ARDI sequence processing tool that aim to distangle extended signal (like disks) from quasi-static speakels) using iterative PCA
|
5
|
-
|
6
|
-
Author: Sandrine Juillard
|
7
|
-
Author-email: sjuillard@uliege.be
|
5
|
+
Author-email: Sandrine Juillard <sjuillard@uliege.be>
|
8
6
|
Classifier: Intended Audience :: Science/Research
|
9
7
|
Classifier: Programming Language :: Python :: 3.8
|
10
8
|
Classifier: Programming Language :: Python :: 3.9
|
11
9
|
Classifier: Programming Language :: Python :: 3.10
|
12
10
|
Classifier: Programming Language :: Python :: 3.11
|
13
|
-
Requires-
|
14
|
-
|
15
|
-
Requires-Dist:
|
11
|
+
Requires-Python: <3.12,>=3.8
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: matplotlib
|
14
|
+
Requires-Dist: numpy<2.0,>=1.20
|
15
|
+
Requires-Dist: torch>=2.2
|
16
|
+
Requires-Dist: torchvision>=0.17
|
16
17
|
Requires-Dist: photutils
|
17
18
|
Requires-Dist: setuptools
|
18
19
|
Requires-Dist: pip
|
@@ -1,18 +1,19 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: GreeDS
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.3
|
4
4
|
Summary: This package is a ADI or ARDI sequence processing tool that aim to distangle extended signal (like disks) from quasi-static speakels) using iterative PCA
|
5
|
-
|
6
|
-
Author: Sandrine Juillard
|
7
|
-
Author-email: sjuillard@uliege.be
|
5
|
+
Author-email: Sandrine Juillard <sjuillard@uliege.be>
|
8
6
|
Classifier: Intended Audience :: Science/Research
|
9
7
|
Classifier: Programming Language :: Python :: 3.8
|
10
8
|
Classifier: Programming Language :: Python :: 3.9
|
11
9
|
Classifier: Programming Language :: Python :: 3.10
|
12
10
|
Classifier: Programming Language :: Python :: 3.11
|
13
|
-
Requires-
|
14
|
-
|
15
|
-
Requires-Dist:
|
11
|
+
Requires-Python: <3.12,>=3.8
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: matplotlib
|
14
|
+
Requires-Dist: numpy<2.0,>=1.20
|
15
|
+
Requires-Dist: torch>=2.2
|
16
|
+
Requires-Dist: torchvision>=0.17
|
16
17
|
Requires-Dist: photutils
|
17
18
|
Requires-Dist: setuptools
|
18
19
|
Requires-Dist: pip
|
@@ -0,0 +1,34 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools>=42", "wheel", "pip"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "GreeDS"
|
7
|
+
version = "2.3"
|
8
|
+
description = "This package is a ADI or ARDI sequence processing tool that aim to distangle extended signal (like disks) from quasi-static speakels) using iterative PCA"
|
9
|
+
authors = [
|
10
|
+
{ name = "Sandrine Juillard", email = "sjuillard@uliege.be" }
|
11
|
+
]
|
12
|
+
readme = "README.md" # adapte ou enlève si tu n'as pas de README
|
13
|
+
requires-python = ">=3.8,<3.12"
|
14
|
+
dependencies = [
|
15
|
+
"matplotlib",
|
16
|
+
"numpy>=1.20,<2.0",
|
17
|
+
"torch>=2.2",
|
18
|
+
"torchvision>=0.17",
|
19
|
+
"photutils",
|
20
|
+
"setuptools",
|
21
|
+
"pip"
|
22
|
+
]
|
23
|
+
|
24
|
+
classifiers = [
|
25
|
+
"Intended Audience :: Science/Research",
|
26
|
+
"Programming Language :: Python :: 3.8",
|
27
|
+
"Programming Language :: Python :: 3.9",
|
28
|
+
"Programming Language :: Python :: 3.10",
|
29
|
+
"Programming Language :: Python :: 3.11",
|
30
|
+
]
|
31
|
+
|
32
|
+
[tool.setuptools.packages.find]
|
33
|
+
where = ["."]
|
34
|
+
include = ["GreeDS", "rotation"]
|
greeds-2.0/setup.py
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
from setuptools import setup, find_packages
|
2
|
-
from pip._internal.req import parse_requirements
|
3
|
-
|
4
|
-
|
5
|
-
reqs = parse_requirements("../requirements.txt", session=False)
|
6
|
-
try:
|
7
|
-
reqs = [str(ir.req) for ir in reqs]
|
8
|
-
except:
|
9
|
-
reqs = [str(ir.requirement) for ir in reqs]
|
10
|
-
|
11
|
-
setup(
|
12
|
-
version="2.0",
|
13
|
-
name="GreeDS",
|
14
|
-
description='This package is a ADI or ARDI sequence processing tool that aim to distangle extended signal (like disks) from quasi-static speakels) using iterative PCA',
|
15
|
-
url='https://github.com/Sand-jrd/GreeDS',
|
16
|
-
author='Sandrine Juillard',
|
17
|
-
author_email='sjuillard@uliege.be',
|
18
|
-
packages=find_packages(),
|
19
|
-
install_requires=reqs,
|
20
|
-
classifiers=[
|
21
|
-
'Intended Audience :: Science/Research',
|
22
|
-
'Programming Language :: Python :: 3.8',
|
23
|
-
'Programming Language :: Python :: 3.9',
|
24
|
-
'Programming Language :: Python :: 3.10',
|
25
|
-
'Programming Language :: Python :: 3.11',
|
26
|
-
],
|
27
|
-
)
|
File without changes
|
File without changes
|
File without changes
|