eventdispatch 0.1.22__tar.gz → 0.1.23__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.1
2
2
  Name: eventdispatch
3
- Version: 0.1.22
3
+ Version: 0.1.23
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -4,7 +4,7 @@ import os, sys, time
4
4
  import threading, signal
5
5
 
6
6
  from .core import *
7
- from .aux1 import *
7
+ from .common1 import *
8
8
 
9
9
  '''
10
10
  a thread-safe data structure
@@ -9,7 +9,7 @@ License: Apache-2.0 (see LICENSE for details)
9
9
  '''
10
10
 
11
11
  from .core import *
12
- from .aux1 import *
12
+ from .common1 import *
13
13
 
14
14
  import signal, time, os, sys, random, threading
15
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: eventdispatch
3
- Version: 0.1.22
3
+ Version: 0.1.23
4
4
  Summary: Event Dispatch: discrete time synchronization
5
5
  Home-page: http://github.com/cyan-at/eventdispatch
6
6
  Author: Charlie Yan
@@ -3,7 +3,7 @@ README.md
3
3
  pyproject.toml
4
4
  setup.py
5
5
  eventdispatch/__init__.py
6
- eventdispatch/aux1.py
6
+ eventdispatch/common1.py
7
7
  eventdispatch/composite_semaphore.py
8
8
  eventdispatch/core.py
9
9
  eventdispatch/example1.py
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  eventdispatch_example1 = eventdispatch.example1:main
3
+ eventdispatch_example2 = eventdispatch.composite_semaphore:main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eventdispatch"
7
- version = "0.1.22"
7
+ version = "0.1.23"
8
8
  authors = [{name = "Charlie Yan", email = "cyanatg@gmail.com"}]
9
9
  dynamic = ["scripts", "dependencies"]
10
10
  description = "Event Dispatch: discrete time synchronization"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='eventdispatch',
5
- version='0.1.22',
5
+ version='0.1.23',
6
6
  description='Event Dispatch, a discrete time synchronizer',
7
7
  url='http://github.com/cyan-at/eventdispatch',
8
8
  author='Charlie Yan',
@@ -11,6 +11,9 @@ setup(
11
11
  install_requires=[],
12
12
  packages=find_packages(),
13
13
  entry_points=dict(
14
- console_scripts=['eventdispatch_example1=eventdispatch.example1:main']
14
+ console_scripts=[
15
+ 'eventdispatch_example1=eventdispatch.example1:main',
16
+ 'eventdispatch_example2=eventdispatch.composite_semaphore:main'
17
+ ]
15
18
  )
16
19
  )
File without changes
File without changes
File without changes