This repository has been archived on 2024-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
v6d1tokens/setup.py

19 lines
373 B
Python

from pathlib import Path
from setuptools import setup
with open(Path(__file__) / 'requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setup(
name='v6d1tokens',
version='',
packages=['v6d1tokens'],
url='',
license='',
author='PARRRATE T&V',
author_email='',
description='',
install_requires=install_requires
)