2019-01-07 11:16:16 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""The setup script."""
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2019-01-11 18:19:05 +01:00
|
|
|
with open("README.rst") as readme_file:
|
2019-01-07 11:16:16 +01:00
|
|
|
readme = readme_file.read()
|
|
|
|
|
2019-01-11 18:19:05 +01:00
|
|
|
with open("HISTORY.rst") as history_file:
|
2019-01-07 11:16:16 +01:00
|
|
|
history = history_file.read()
|
|
|
|
|
|
|
|
requirements = [
|
2019-01-11 18:19:05 +01:00
|
|
|
"Click>=6.0",
|
|
|
|
"selenium>=3.141.0",
|
2019-01-07 11:16:16 +01:00
|
|
|
# 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(
|
2019-01-11 18:19:05 +01:00
|
|
|
name="bot_z",
|
|
|
|
version="0.1.0",
|
2019-01-07 11:16:16 +01:00
|
|
|
description="A bot to easen the daily routine with zucchetti virtual badge.",
|
2019-01-11 18:19:05 +01:00
|
|
|
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"]},
|
2019-01-07 11:16:16 +01:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requirements,
|
|
|
|
license="GNU General Public License v3",
|
|
|
|
zip_safe=False,
|
2019-01-11 18:19:05 +01:00
|
|
|
keywords="bot_z",
|
2019-01-07 11:16:16 +01:00
|
|
|
classifiers=[
|
2019-01-11 18:19:05 +01:00
|
|
|
"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",
|
2019-01-07 11:16:16 +01:00
|
|
|
],
|
2019-01-11 18:19:05 +01:00
|
|
|
test_suite="pytest",
|
2019-01-07 11:16:16 +01:00
|
|
|
tests_require=test_requirements,
|
|
|
|
setup_requires=setup_requirements,
|
|
|
|
)
|