-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (27 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (27 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
def readme():
with open("README.md", "r", encoding="utf-8") as f:
return f.read()
def req():
with open("requirements.txt", "r", encoding="utf-8") as f:
return f.read().splitlines()
setup(
name="playerokapi",
version="1.1",
author="3xtra (alleexxeeyy)",
author_email="alexey.work@gmail.com",
description="Неофициальный API для работы с торговой площадкой Playerok, основанный на запросах",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/alleexxeeyy/PlayerokAPI",
packages=find_packages(),
install_requires=req(),
classifiers=[
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="python playerok playerokapi api requests websocket",
project_urls={"Documentation": "https://playerokapi.readthedocs.io/ru/latest/"},
python_requires=">=3.11",
)