chanter 0.0.7__tar.gz → 0.0.9__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.
chanter-0.0.9/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: chanter
3
+ Version: 0.0.9
4
+ Summary: Simple galaxy spectral modelling and fitting
5
+ Author: Struan Stevenson
6
+ Author-email: struan.stevenson@ed.ac.uk
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: astropy
10
+ Requires-Dist: matplotlib
11
+ Requires-Dist: spectres
12
+ Requires-Dist: nautilus-sampler
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: requires-dist
18
+ Dynamic: summary
19
+
20
+ # CHANTER
21
+
22
+ #### CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.
23
+
24
+ Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.
@@ -0,0 +1,5 @@
1
+ # CHANTER
2
+
3
+ #### CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.
4
+
5
+ Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: chanter
3
+ Version: 0.0.9
4
+ Summary: Simple galaxy spectral modelling and fitting
5
+ Author: Struan Stevenson
6
+ Author-email: struan.stevenson@ed.ac.uk
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: numpy
9
+ Requires-Dist: astropy
10
+ Requires-Dist: matplotlib
11
+ Requires-Dist: spectres
12
+ Requires-Dist: nautilus-sampler
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: requires-dist
18
+ Dynamic: summary
19
+
20
+ # CHANTER
21
+
22
+ #### CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.
23
+
24
+ Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.
chanter-0.0.9/setup.py ADDED
@@ -0,0 +1,29 @@
1
+ import setuptools
2
+ from setuptools import setup
3
+ from pathlib import Path
4
+
5
+ this_directory = Path(__file__).parent
6
+ long_description = (this_directory / "README.md").read_text()
7
+
8
+ setup(
9
+ name='chanter',
10
+
11
+ version='0.0.9',
12
+
13
+ description='Simple galaxy spectral modelling and fitting',
14
+
15
+ long_description=long_description,
16
+
17
+ long_description_content_type='text/markdown',
18
+
19
+ author='Struan Stevenson',
20
+
21
+ author_email='struan.stevenson@ed.ac.uk',
22
+
23
+ packages= setuptools.find_packages(),
24
+
25
+ package_data = {'': ['*.txt', '*.fits'],},
26
+
27
+ install_requires=["numpy", "astropy", "matplotlib", "spectres", "nautilus-sampler"],
28
+
29
+ )
chanter-0.0.7/PKG-INFO DELETED
@@ -1,19 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: chanter
3
- Version: 0.0.7
4
- Summary: Simple galaxy spectral modelling and fitting
5
- Author: Struan Stevenson
6
- Author-email: struan.stevenson@ed.ac.uk
7
- Requires-Dist: numpy
8
- Requires-Dist: astropy
9
- Requires-Dist: matplotlib
10
- Requires-Dist: spectres
11
- Requires-Dist: nautilus-sampler
12
- Dynamic: author
13
- Dynamic: author-email
14
- Dynamic: description
15
- Dynamic: requires-dist
16
- Dynamic: summary
17
-
18
- CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.
19
- Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.
chanter-0.0.7/README.md DELETED
@@ -1 +0,0 @@
1
- # Chanter
@@ -1,19 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: chanter
3
- Version: 0.0.7
4
- Summary: Simple galaxy spectral modelling and fitting
5
- Author: Struan Stevenson
6
- Author-email: struan.stevenson@ed.ac.uk
7
- Requires-Dist: numpy
8
- Requires-Dist: astropy
9
- Requires-Dist: matplotlib
10
- Requires-Dist: spectres
11
- Requires-Dist: nautilus-sampler
12
- Dynamic: author
13
- Dynamic: author-email
14
- Dynamic: description
15
- Dynamic: requires-dist
16
- Dynamic: summary
17
-
18
- CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.
19
- Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.
chanter-0.0.7/setup.py DELETED
@@ -1,23 +0,0 @@
1
- import setuptools
2
- from setuptools import setup
3
-
4
- setup(
5
- name='chanter',
6
-
7
- version='0.0.7',
8
-
9
- description='Simple galaxy spectral modelling and fitting',
10
-
11
- long_description='CHANTER is a simple galaxy spectral energy distribution (SED) modelling/fitting code, based on the larger BAGPIPES code, of astronomical literary fame. CHANTER provides the barebones of Stellar Population Synthesis (SPS), as well as redshift and dust/IGM attenuation effects, and is written in a simple and digestible format, ideal for learning the theory behind larger spectral fitting software codes.\n Currently, I cannot include the SSP/IGM grids in the package due to PyPi size limitations, but this is being appealed.',
12
-
13
- author='Struan Stevenson',
14
-
15
- author_email='struan.stevenson@ed.ac.uk',
16
-
17
- packages= setuptools.find_packages(),
18
-
19
- package_data = {'': ['*.txt', '*.fits'],},
20
-
21
- install_requires=["numpy", "astropy", "matplotlib", "spectres", "nautilus-sampler"],
22
-
23
- )
File without changes
File without changes
File without changes