-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 1.19 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
from setuptools import setup
from os.path import join, dirname
requirements = [
"cryptography>=3.4.7",
"websockets>=10.1",
"aiohttp>=3.8.1"
]
setup(
name='remoteauthclient',
version='1.4.0',
packages=["remoteauthclient"],
long_description=open(join(dirname(__file__), 'README.md')).read(),
long_description_content_type="text/markdown",
description='Client for Discord authorization via qr code',
url='https://github.com/RuslanUC/RemoteAuthClient',
repository='https://github.com/RuslanUC/RemoteAuthClient',
author='RuslanUC',
install_requires=requirements,
python_requires='>=3.7',
license='MIT',
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)