-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
44 lines (42 loc) · 1.05 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open("README.md", "r") as stream:
long_description = stream.read()
setup(
name = "durakonline.py",
version = "3.6.0",
url = "https://github.com/Zakovskiy/durakonline.py",
download_url = "https://github.com/Zakovskiy/durakonline.py/tarball/master",
license = "MIT",
author = "Zakovskiy",
author_email = "[email protected]",
description = "A library to create Durak Online bots.",
long_description = long_description,
long_description_content_type = "text/markdown",
keywords = [
"durak",
"online",
"durakonline",
"durakonline.py",
"durakonline-bot",
"rstgame",
"rstgames",
"api",
"socket",
"python",
"python3",
"python3.x",
"zakovskiy",
"official"
],
install_requires = [
"setuptools",
"requests",
"loguru",
"aiohttp",
"msgspec"
],
setup_requires = [
"wheel"
],
packages = find_packages()
)