#! /usr/bin/env python3 """Setup script for .""" from setuptools import setup # type: ignore # import with open("README.md", "r") as f: LONG_DESCRIPTION = f.read() setup() # setup(name="", # version=.__version__, # author=.__author__, # description=.__doc__, # license=.__license__, # long_description=LONG_DESCRIPTION, # install_requires=["List", "Of", "Dependencies", "with", "a", "format", "like", "requirements.txt"], # scripts=[""], # url="", # classifiers=[])