moons-motor 0.0.3__tar.gz → 0.0.4__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moons_motor
3
- Version: 0.0.3
3
+ Version: 0.0.4
4
4
  Summary: This is a python library for controlling the Moons' motor through the serial port.
5
5
  Author-email: miroc <mike8503111@gmail.com>
6
6
  Project-URL: Repository, https://github.com/miroc99/moons_motor.git
@@ -15,6 +15,7 @@ License-File: LICENSE
15
15
  Requires-Dist: pyserial
16
16
  Requires-Dist: rich
17
17
  Requires-Dist: python-socketio
18
+ Requires-Dist: request
18
19
 
19
20
  # Moons Motor
20
21
 
@@ -6,7 +6,7 @@ from rich import print
6
6
  from rich.console import Console
7
7
  from rich.panel import Panel
8
8
  import queue
9
- from Subject import Subject
9
+ from subject import Subject
10
10
 
11
11
 
12
12
  class StepperModules:
@@ -4,7 +4,7 @@ from observer import Observer
4
4
  import time
5
5
 
6
6
 
7
- class moons_stepper_simulate(Observer):
7
+ class MoonsStepperSimulate(Observer):
8
8
  def __init__(
9
9
  self,
10
10
  moons_motor: motor.MoonsStepper,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moons_motor
3
- Version: 0.0.3
3
+ Version: 0.0.4
4
4
  Summary: This is a python library for controlling the Moons' motor through the serial port.
5
5
  Author-email: miroc <mike8503111@gmail.com>
6
6
  Project-URL: Repository, https://github.com/miroc99/moons_motor.git
@@ -15,6 +15,7 @@ License-File: LICENSE
15
15
  Requires-Dist: pyserial
16
16
  Requires-Dist: rich
17
17
  Requires-Dist: python-socketio
18
+ Requires-Dist: request
18
19
 
19
20
  # Moons Motor
20
21
 
@@ -2,13 +2,13 @@ LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
4
  setup.py
5
- moons_motor/Subject.py
6
5
  moons_motor/__init__.py
7
6
  moons_motor/example.py
8
7
  moons_motor/motor.py
9
8
  moons_motor/observer.py
10
9
  moons_motor/simulate.py
11
10
  moons_motor/status.py
11
+ moons_motor/subject.py
12
12
  moons_motor.egg-info/PKG-INFO
13
13
  moons_motor.egg-info/SOURCES.txt
14
14
  moons_motor.egg-info/dependency_links.txt
@@ -1,3 +1,4 @@
1
1
  pyserial
2
2
  rich
3
3
  python-socketio
4
+ request
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "moons_motor"
7
- version = "0.0.3"
7
+ version = "0.0.4"
8
8
  authors = [{ name = "miroc", email = "mike8503111@gmail.com" }]
9
9
  description = "This is a python library for controlling the Moons' motor through the serial port."
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.12"
12
- dependencies = ["pyserial", "rich", "python-socketio"]
12
+ dependencies = ["pyserial", "rich", "python-socketio", "request"]
13
13
  classifiers = [
14
14
  # How mature is this project? Common values are
15
15
  # 3 - Alpha
File without changes
File without changes
File without changes
File without changes