18 lines
309 B
Python
18 lines
309 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='v6d0auth',
|
|
version='',
|
|
packages=['v6d0auth'],
|
|
url='',
|
|
license='',
|
|
author='PARRRATE T&V',
|
|
author_email='',
|
|
description='',
|
|
install_requires=[
|
|
'setuptools~=57.0.0',
|
|
'aiohttp~=3.8.1',
|
|
'PyNaCl~=1.4.0',
|
|
]
|
|
)
|