22 lines
440 B
Python
22 lines
440 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='v6d0auth',
|
|
version='',
|
|
packages=['v6d0auth'],
|
|
url='',
|
|
license='',
|
|
author='PARRRATE TNV',
|
|
author_email='',
|
|
description='',
|
|
install_requires=[
|
|
'aiohttp',
|
|
'PyNaCl~=1.4.0',
|
|
],
|
|
extras_require={
|
|
'full': [
|
|
'ptvp35 @ git+https://gitea.parrrate.ru/PTV/ptvp35.git@e760fca39e2070b9959aeb95b53e59e895f1ad57',
|
|
],
|
|
},
|
|
)
|