-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.14 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 1.14 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
34
35
36
37
from setuptools import setup
setup(
name="chatwars-api",
version="1!2021.2.5b2",
description="Client for Chat Wars API for Python3",
author="Andrew Golovashevich",
url="https://LandgrafHomyak.github.io/cwapi-python/",
download_url="https://github.com/LandgrafHomyak/cwapi-python/releases/tag/v1!2021.11.24b0",
packages=["cwapi"],
python_requires=">=3.8, <3.12",
install_requires=[
"pika",
"aio-pika",
],
package_data={
"cwapi": ["py.typed", "*.pyi"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Software Development",
"Typing :: Typed"
],
license="MIT",
license_files=["LICENSE"],
)