SkyMapMod 0.0.4__tar.gz → 0.0.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: SkyMapMod
3
- Version: 0.0.4
3
+ Version: 0.0.6
4
4
  Project-URL: Homepage, https://istina.msu.ru/profile/aminevann/
5
5
  Author-email: Anna Amineva <amineva.2219@physics.msu.ru>
6
6
  License-File: LICENSE
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "SkyMapMod"
7
- version = "0.0.4"
7
+ version = "0.0.6"
8
8
  authors = [
9
9
  { name="Anna Amineva", email="amineva.2219@physics.msu.ru" },
10
10
  ]
@@ -0,0 +1,2 @@
1
+ from .zodiac import *
2
+ from .airglow import *
@@ -0,0 +1,9 @@
1
+ import numpy as np
2
+ import math
3
+ import matplotlib.pyplot as plt
4
+
5
+
6
+
7
+ def spectrum():
8
+ from .airglow_spectrum import wave, intensity
9
+ print(wave, intensity)
@@ -0,0 +1,4 @@
1
+ import numpy as np
2
+
3
+ wave = np.array([1, 2, 3, 4, 5])
4
+ intensity = np.array([5, 4, 3, 2, 1])
@@ -2,9 +2,6 @@ import numpy as np
2
2
  import math
3
3
  import matplotlib.pyplot as plt
4
4
 
5
- def hello():
6
- print("Hello")
7
-
8
5
  #переопределяю тригонометрические функции, чтобы работать с градусами
9
6
  def cos(x):
10
7
  return math.cos(x * math.pi / 180)
@@ -1 +0,0 @@
1
- from .zodiac import *
File without changes
File without changes