#!/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", "selenium>=3.141.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="Blallo", author_email="blallo@autistici.org", 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 :: 3", "Programming Language :: Python :: 3.7", ], test_suite="pytest", tests_require=test_requirements, setup_requires=setup_requirements, )