11 lines
215 B
Python
11 lines
215 B
Python
from setuptools import setup
|
|
|
|
setup(name='qot',
|
|
description='qot',
|
|
long_description='qot',
|
|
author='qot',
|
|
license='MIT',
|
|
packages=['qot'],
|
|
entry_points={'console_scripts': ['qot=qot:qot']},
|
|
)
|