23 lines
638 B
Python
23 lines
638 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='multinut',
|
|
version='0.3.4',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"requests>=2.25.0",
|
|
"python-dotenv>=0.21.0",
|
|
"openai>=0.26.5"
|
|
],
|
|
author='Chipperfluff',
|
|
author_email='contact@chipperfluff.at',
|
|
description='A completely unnecessary multitool module.',
|
|
long_description=open('README.md').read(),
|
|
long_description_content_type='text/markdown',
|
|
url='https://git.chipperfluff.at/MultinutServices/Multinut',
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3'
|
|
],
|
|
python_requires='>=3.6',
|
|
)
|