Skip to content

Commit 7fb7ed5

Browse files
committed
add: requires: typing_extensions, thanks @KotRikD
1 parent 495bc41 commit 7fb7ed5

2 files changed

Lines changed: 13 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ requires = [
1010

1111
[project]
1212
name = "peace-performance-python"
13-
version = "1.0.1"
13+
version = "1.0.2"
1414
description = "Rust binding for python. To calculate star ratings and performance points for all osu! gamemodes, and quickly parse Beatmap into python objects."
1515
keywords = "rust peace osu pp beatmap parse rosu-pp peace-performance"
1616
author = "PurePeace"
@@ -36,7 +36,12 @@ classifiers = [
3636
"Operating System :: MacOS :: MacOS X",
3737
"Operating System :: Microsoft :: Windows",
3838
]
39-
packages = ["peace_performance_python"]
39+
install_requires = ["typing_extensions"]
40+
packages = [
41+
"peace_performance_python",
42+
"peace_performance_python.objects",
43+
"peace_performance_python.functions",
44+
]
4045

4146
[tool.pytest.ini_options]
4247
markers = ["benchmark"]

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name="peace-performance-python",
22-
version="1.0.1",
22+
version="1.0.2",
2323
description="Rust binding for python. To calculate star ratings and performance points for all osu! gamemodes, and quickly parse Beatmap into python objects.",
2424
long_description=open("README.md", encoding="utf-8").read(),
2525
long_description_content_type="text/markdown",
@@ -47,7 +47,11 @@
4747
"Operating System :: MacOS :: MacOS X",
4848
"Operating System :: Microsoft :: Windows",
4949
],
50-
packages=["peace_performance_python", "peace_performance_python.objects", "peace_performance_python.functions"],
50+
install_requires=[
51+
"typing_extensions"
52+
],
53+
packages=["peace_performance_python", "peace_performance_python.objects",
54+
"peace_performance_python.functions"],
5155
rust_extensions=[
5256
RustExtension(
5357
"peace_performance_python._peace_performance",

0 commit comments

Comments
 (0)