soccer-sim 1.1.0__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.
- soccer_sim-1.1.0/LICENSE +21 -0
- soccer_sim-1.1.0/PKG-INFO +39 -0
- soccer_sim-1.1.0/README.md +7 -0
- soccer_sim-1.1.0/main/__init__.py +13 -0
- soccer_sim-1.1.0/main/main.py +1493 -0
- soccer_sim-1.1.0/pyproject.toml +17 -0
- soccer_sim-1.1.0/setup.cfg +4 -0
- soccer_sim-1.1.0/soccer_sim.egg-info/PKG-INFO +39 -0
- soccer_sim-1.1.0/soccer_sim.egg-info/SOURCES.txt +9 -0
- soccer_sim-1.1.0/soccer_sim.egg-info/dependency_links.txt +1 -0
- soccer_sim-1.1.0/soccer_sim.egg-info/top_level.txt +1 -0
soccer_sim-1.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 TheUltimateGenius4999
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS AND SHALL BE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTA-
|
|
17
|
+
BILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
18
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
19
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
20
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
21
|
+
IN THE PROVIDED SOFTWARE.
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: soccer_sim
|
|
3
|
+
Version: 1.1.0
|
|
4
|
+
Summary: A Python module for simulating soccer matches and competitions
|
|
5
|
+
Author: TheUltimateGenius4999
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 TheUltimateGenius4999
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS AND SHALL BE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
21
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTA-
|
|
22
|
+
BILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
23
|
+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
24
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
25
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
26
|
+
IN THE PROVIDED SOFTWARE.
|
|
27
|
+
Project-URL: Homepage, https://pypi.org/
|
|
28
|
+
Requires-Python: >=3.6
|
|
29
|
+
Description-Content-Type: text/markdown
|
|
30
|
+
License-File: LICENSE
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
Well, welcome!
|
|
34
|
+
|
|
35
|
+
This is a soccer module, where you can simulate a league, a soccer match with
|
|
36
|
+
extra time or not, a group stage, and knockout brackets! Surely it is the
|
|
37
|
+
first of its kind!
|
|
38
|
+
|
|
39
|
+
Enjoy this module today!
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from . import main
|
|
2
|
+
from .main import soccer_match_ft
|
|
3
|
+
from .main import soccer_match_et
|
|
4
|
+
from .main import league_day
|
|
5
|
+
from .main import init_league
|
|
6
|
+
from .main import league
|
|
7
|
+
from .main import group_stage2026
|
|
8
|
+
from .main import round_of_64
|
|
9
|
+
from .main import round_of_32
|
|
10
|
+
from .main import round_of_16
|
|
11
|
+
from .main import quarterfinals
|
|
12
|
+
from .main import semifinals
|
|
13
|
+
from .main import __all__
|