-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.31 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
import os
from distutils.core import setup
from setuptools import find_packages
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
README = readme.read()
setup(
name="pyreydenx",
packages=find_packages(),
python_requires=">=3.11",
version="1.0.10",
license="Apache Software License",
description="Reyden-X is an automated service for promoting live broadcasts on external "
"sites with integrated system of viewers and views management.",
long_description=README,
author="pixel365",
author_email="[email protected]",
url="https://github.com/pixel365/pyreydenx",
download_url="https://github.com/pixel365/pyreydenx/archive/master.zip",
project_urls={
"Documentation": "https://api.reyden-x.com/docs",
"Source": "https://github.com/pixel365/pyreydenx",
},
keywords=["reydenx", "twitch", "trovo", "youtube", "vkplay", "goodgame"],
install_requires=[
"httpx>=0.20, <0.30",
"pydantic>=2.0, <3.0",
],
setup_requires=[
"httpx",
"pydantic",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
],
)