63 lines
1.8 KiB
Python
63 lines
1.8 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 = [
|
||
|
'Click>=6.0',
|
||
|
# TODO: put package requirements here
|
||
|
]
|
||
|
|
||
|
setup_requirements = [
|
||
|
# TODO(lbarcaroli): put setup requirements (distutils extensions, etc.) here
|
||
|
]
|
||
|
|
||
|
test_requirements = [
|
||
|
# TODO: put package test requirements here
|
||
|
]
|
||
|
|
||
|
setup(
|
||
|
name='bot_z',
|
||
|
version='0.1.0',
|
||
|
description="A bot to easen the daily routine with zucchetti virtual badge.",
|
||
|
long_description=readme + '\n\n' + history,
|
||
|
author="Leonardo Barcaroli",
|
||
|
author_email='leonardo.barcaroli@deustechnology.com',
|
||
|
url='https://github.com/lbarcaroli/bot_z',
|
||
|
packages=find_packages(include=['bot_z']),
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'bot_z=bot_z.cli:main'
|
||
|
]
|
||
|
},
|
||
|
include_package_data=True,
|
||
|
install_requires=requirements,
|
||
|
license="GNU General Public License v3",
|
||
|
zip_safe=False,
|
||
|
keywords='bot_z',
|
||
|
classifiers=[
|
||
|
'Development Status :: 2 - Pre-Alpha',
|
||
|
'Intended Audience :: Developers',
|
||
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||
|
'Natural Language :: English',
|
||
|
"Programming Language :: Python :: 2",
|
||
|
'Programming Language :: Python :: 2.6',
|
||
|
'Programming Language :: Python :: 2.7',
|
||
|
'Programming Language :: Python :: 3',
|
||
|
'Programming Language :: Python :: 3.3',
|
||
|
'Programming Language :: Python :: 3.4',
|
||
|
'Programming Language :: Python :: 3.5',
|
||
|
],
|
||
|
test_suite='tests',
|
||
|
tests_require=test_requirements,
|
||
|
setup_requires=setup_requirements,
|
||
|
)
|