mirror of
https://github.com/ZGCA-Forge/Elevator.git
synced 2025-12-17 13:01:03 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cbfae640d1 | ||
|
|
de3fa68fa6 | ||
|
|
78395349b2 |
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.0.2
|
current_version = 0.0.3
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
tag_name = v{new_version}
|
tag_name = v{new_version}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[](https://badge.fury.io/py/elevatorpy)
|
[](https://badge.fury.io/py/elevator-py)
|
||||||
[](https://pypi.org/project/elevatorpy/)
|
[](https://pypi.org/project/elevator-py/)
|
||||||
[](https://github.com/ZGCA-Forge/Elevator/actions)
|
[](https://github.com/ZGCA-Forge/Elevator/actions)
|
||||||
[](https://zgca-forge.github.io/Elevator/)
|
[](https://zgca-forge.github.io/Elevator/)
|
||||||
|
|
||||||
@@ -27,13 +27,13 @@ Elevator Saga is a Python implementation of an elevator [simulation game](https:
|
|||||||
### Basic Installation
|
### Basic Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install elevatorpy
|
pip install elevator-py
|
||||||
```
|
```
|
||||||
|
|
||||||
### With Development Dependencies
|
### With Development Dependencies
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install elevatorpy[dev]
|
pip install elevator-py[dev]
|
||||||
```
|
```
|
||||||
|
|
||||||
### From Source
|
### From Source
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
Welcome to Elevator Saga's Documentation!
|
Welcome to Elevator Saga's Documentation!
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
.. image:: https://badge.fury.io/py/elevatorpy.svg
|
.. image:: https://badge.fury.io/py/elevator-py.svg
|
||||||
:target: https://badge.fury.io/py/elevatorpy
|
:target: https://badge.fury.io/py/elevator-py
|
||||||
:alt: PyPI version
|
:alt: PyPI version
|
||||||
|
|
||||||
.. image:: https://img.shields.io/pypi/pyversions/elevatorpy.svg
|
.. image:: https://img.shields.io/pypi/pyversions/elevator-py.svg
|
||||||
:target: https://pypi.org/project/elevatorpy/
|
:target: https://pypi.org/project/elevator-py/
|
||||||
:alt: Python versions
|
:alt: Python versions
|
||||||
|
|
||||||
.. image:: https://github.com/ZGCA-Forge/Elevator/actions/workflows/ci.yml/badge.svg
|
.. image:: https://github.com/ZGCA-Forge/Elevator/actions/workflows/ci.yml/badge.svg
|
||||||
@@ -40,14 +40,14 @@ Basic Installation
|
|||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
pip install elevatorpy
|
pip install elevator-py
|
||||||
|
|
||||||
With Development Dependencies
|
With Development Dependencies
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
pip install elevatorpy[dev]
|
pip install elevator-py[dev]
|
||||||
|
|
||||||
From Source
|
From Source
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ A Python implementation of the Elevator Saga game with event-driven architecture
|
|||||||
realistic elevator dispatch algorithm development and testing.
|
realistic elevator dispatch algorithm development and testing.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.0.2"
|
__version__ = "0.0.3"
|
||||||
__author__ = "ZGCA Team"
|
__author__ = "ZGCA Team"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ requires = ["setuptools>=61.0", "wheel"]
|
|||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "elevatorpy"
|
name = "elevator-py"
|
||||||
dynamic = ["version"]
|
dynamic = ["version"]
|
||||||
description = "Python implementation of Elevator Saga game with event system"
|
description = "Python implementation of Elevator Saga game with event system"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
Reference in New Issue
Block a user