This repository has been archived on 2021-03-28. You can view files and clone it, but cannot push or open issues/pull-requests.
frank/setup.py

29 lines
911 B
Python
Raw Normal View History

2020-08-25 18:56:19 +02:00
# =====IMPORTS=====
# Third-party imports
import setuptools
with open('requirements.txt', 'r') as reqs_file:
reqs = [line.strip() for line in reqs_file.readlines()]
setuptools.setup(
2020-08-26 15:20:00 +02:00
name='frank-discord',
2020-08-26 15:08:41 +02:00
version='0.1.0',
2020-08-25 18:56:19 +02:00
author='Jef Roosens',
author_email='',
description='A modular tool for building Discord bots',
2020-08-26 15:08:41 +02:00
long_description='See https://gitlab.com/Chewing_Bever/frank for details.',
2020-08-25 18:56:19 +02:00
url='https://gitlab.com/Chewing_Bever/frank',
2020-08-26 14:54:55 +02:00
packages=setuptools.find_packages(exclude=('tests',)),
2020-08-25 18:56:19 +02:00
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
],
python_requires='>=3.8',
install_requires=reqs,
setup_requires=['wheel'],
)