chanter 0.0.4__tar.gz → 0.0.5__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.5/PKG-INFO ADDED
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: chanter
3
+ Version: 0.0.5
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.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: chanter
3
+ Version: 0.0.5
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.
chanter-0.0.5/setup.py ADDED
@@ -0,0 +1,23 @@
1
+ import setuptools
2
+ from setuptools import setup
3
+
4
+ setup(
5
+ name='chanter',
6
+
7
+ version='0.0.5',
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.',
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
+ )
chanter-0.0.4/PKG-INFO DELETED
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: chanter
3
- Version: 0.0.4
4
- Summary: Galaxy spectral 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: requires-dist
15
- Dynamic: summary
@@ -1,15 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: chanter
3
- Version: 0.0.4
4
- Summary: Galaxy spectral 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: requires-dist
15
- Dynamic: summary
chanter-0.0.4/setup.py DELETED
@@ -1,21 +0,0 @@
1
- import setuptools
2
- from setuptools import setup
3
-
4
- setup(
5
- name='chanter',
6
-
7
- version='0.0.4',
8
-
9
- description='Galaxy spectral fitting',
10
-
11
- author='Struan Stevenson',
12
-
13
- author_email='struan.stevenson@ed.ac.uk',
14
-
15
- packages= setuptools.find_packages(),
16
-
17
- package_data = {'': ['*.txt', '*.fits'],},
18
-
19
- install_requires=["numpy", "astropy", "matplotlib", "spectres", "nautilus-sampler"],
20
-
21
- )
File without changes
File without changes
File without changes
File without changes