Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
shayanheidari01 authored Nov 30, 2023
1 parent ebca2de commit b596947
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
from setuptools import setup, find_packages

requirements = ['aiohttp', 'pycryptodome', 'aiofiles']
requirements = [
'aiohttp',
'pycryptodome',
'aiofiles',
'mutagen',
'websocket-client',
'requests',
'pydantic==1.10.12'
]

with open("README.md", encoding="UTF-8") as f:
with open('README.md', encoding='UTF-8') as f:
readme = f.read()

setup(
name = 'rubpy',
version = '6.0.4',
version = '6.4.9',
author='Shayan Heidari',
author_email = 'contact@shayanheidari.info',
description = 'This is an unofficial library and fastest library for deploying robots on Rubika accounts.',
Expand All @@ -19,7 +27,7 @@
packages = find_packages(),
install_requires = requirements,
extras_require={
'opencv-python': ['opencv-python']
'cv': ['opencv-python']
},
classifiers=[
'Programming Language :: Python :: 3.7',
Expand Down

0 comments on commit b596947

Please sign in to comment.