60 lines
1.6 KiB
Python
60 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""The setup script."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open('README.rst') as readme_file:
|
|
readme = readme_file.read()
|
|
|
|
with open('HISTORY.rst') as history_file:
|
|
history = history_file.read()
|
|
|
|
requirements = [
|
|
'discord.py',
|
|
'requests',
|
|
'PyNaCl',
|
|
'aiocron',
|
|
]
|
|
|
|
setup_requirements = [ ]
|
|
|
|
test_requirements = [ ]
|
|
|
|
setup(
|
|
author="Michaël Ricart",
|
|
author_email='michael.ricart@0w.tf',
|
|
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
|
|
classifiers=[
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Natural Language :: English',
|
|
"Programming Language :: Python :: 2",
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
],
|
|
description="kabot for discord",
|
|
entry_points={
|
|
'console_scripts': [
|
|
'kabot=kabot.kabot:main',
|
|
],
|
|
},
|
|
install_requires=requirements,
|
|
license="BSD license",
|
|
long_description=readme + '\n\n' + history,
|
|
include_package_data=True,
|
|
keywords='kabot',
|
|
name='kabot',
|
|
packages=find_packages(include=['kabot', 'kabot.*']),
|
|
setup_requires=setup_requirements,
|
|
test_suite='tests',
|
|
tests_require=test_requirements,
|
|
url='https://github.com/None/kabot',
|
|
version='0.1.0',
|
|
zip_safe=False,
|
|
)
|