Spaces:
Running
Running
Add support annotation for Python 3.10+
Browse files- README.md +8 -0
- pyproject.toml +2 -0
README.md
CHANGED
@@ -52,6 +52,10 @@ Set the following environment variables:
|
|
52 |
```
|
53 |
|
54 |
#### Using pip
|
|
|
|
|
|
|
|
|
55 |
1. Install the package:
|
56 |
```
|
57 |
pip install mediaflow-proxy
|
@@ -70,6 +74,10 @@ Set the following environment variables:
|
|
70 |
|
71 |
#### Using git & poetry
|
72 |
|
|
|
|
|
|
|
|
|
73 |
1. Clone the repository:
|
74 |
```
|
75 |
git clone https://github.com/mhdzumair/mediaflow-proxy.git
|
|
|
52 |
```
|
53 |
|
54 |
#### Using pip
|
55 |
+
|
56 |
+
> ![Note]
|
57 |
+
> Ensure that you have Python 3.10 or higher installed.
|
58 |
+
|
59 |
1. Install the package:
|
60 |
```
|
61 |
pip install mediaflow-proxy
|
|
|
74 |
|
75 |
#### Using git & poetry
|
76 |
|
77 |
+
> ![Note]
|
78 |
+
> Ensure that you have Python 3.10 or higher installed.
|
79 |
+
|
80 |
+
|
81 |
1. Clone the repository:
|
82 |
```
|
83 |
git clone https://github.com/mhdzumair/mediaflow-proxy.git
|
pyproject.toml
CHANGED
@@ -14,6 +14,8 @@ classifiers = [
|
|
14 |
"Intended Audience :: Developers",
|
15 |
"License :: OSI Approved :: MIT License",
|
16 |
"Programming Language :: Python :: 3",
|
|
|
|
|
17 |
"Programming Language :: Python :: 3.12",
|
18 |
]
|
19 |
include = ["LICENSE", "README.md", "mediaflow_proxy/static/*"]
|
|
|
14 |
"Intended Audience :: Developers",
|
15 |
"License :: OSI Approved :: MIT License",
|
16 |
"Programming Language :: Python :: 3",
|
17 |
+
"Programming Language :: Python :: 3.10",
|
18 |
+
"Programming Language :: Python :: 3.11",
|
19 |
"Programming Language :: Python :: 3.12",
|
20 |
]
|
21 |
include = ["LICENSE", "README.md", "mediaflow_proxy/static/*"]
|