allris-scraper/setup.py

57 lines
1.9 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Copyright 2020 Jim Martens
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""setup.py for allris scraper"""
from setuptools import find_packages
from setuptools import setup
2020-01-13 23:28:32 +01:00
with open("README.rst", "rb") as f:
long_desc = f.read().decode()
setup(
name="twomartens.allrisscraper",
description="Scraper for ALLRIS",
long_description=long_desc,
2020-01-13 23:28:32 +01:00
long_description_content_type="text/x-rst; charset=UTF-8",
author="Jim Martens",
author_email="github@2martens.de",
2020-01-08 22:52:33 +01:00
url="https://git.2martens.de/2martens/allris-scraper",
2021-04-11 10:51:18 +02:00
version="0.5.7",
namespace_packages=["twomartens"],
packages=find_packages('src', exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={'': 'src'},
package_data={},
entry_points={
"console_scripts": ["tm-allrisscraper = twomartens.allrisscraper.main:main"]
},
2020-01-08 21:01:02 +01:00
python_requires="~=3.7",
install_requires=["selenium"],
license="Apache License 2.0",
include_package_data=True,
classifiers=[
"Operating System :: OS Independent",
2020-01-08 21:44:28 +01:00
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Environment :: Console",
2020-01-08 21:44:28 +01:00
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
2020-01-08 21:01:02 +01:00
"Programming Language :: Python :: 3.8",
],
)