forked from treeben77/rblx-open-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 873 Bytes
/
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
import re
from setuptools import setup
with open("rblxopencloud/__init__.py", "r") as file:
version = re.search(
r"VERSION: str = \"(\d+\.\d+\.\d+)\"", file.read()
).group(1)
with open("README.md", "r") as file:
long_description = file.read()
setup(
name="rblx-open-cloud",
description="API wrapper for Roblox Open Cloud",
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.9.0",
author="treeben77",
packages=["rblxopencloud", "rblxopencloudasync"],
url="https://github.com/treeben77/rblx-open-cloud",
keywords="roblox, open-cloud, data-store, place-publishing, mesageing-service",
install_requires=[
"requests",
"aiohttp",
"cryptography",
"pyjwt",
"python-dateutil",
],
)