1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- import pathlib
- import setuptools
- _REPO_URL = "https://github.com/fphammerle/location-guessing-game-telegram-bot"
- setuptools.setup(
- name="location-guessing-game-telegram-bot",
- use_scm_version={
-
-
- "git_describe_command": "git describe --dirty --tags --long --match v*",
- },
- packages=setuptools.find_packages(),
- description="Basic Telegram Bot Sending Random Wikimedia Commons Photos",
- long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(),
- long_description_content_type="text/markdown",
- author="Fabian Peter Hammerle",
- author_email="fabian+location-guessing@hammerle.me",
- url=_REPO_URL,
- project_urls={"Changelog": _REPO_URL + "/blob/master/CHANGELOG.md"},
- license="GPLv3+",
- keywords=[
- "bot",
- "game",
- "guessing",
- "location",
- "photos",
- "telegram",
- ],
- classifiers=[
-
- "Development Status :: 4 - Beta",
- "Intended Audience :: End Users/Desktop",
- "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
- "Operating System :: OS Independent",
- "Topic :: Games/Entertainment",
-
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- ],
- entry_points={
- "console_scripts": [
- "location-guessing-game-telegram-bot = location_guessing_game_telegram_bot:_main",
- ]
- },
-
-
- python_requires=">=3.8",
- install_requires=[
-
-
-
-
-
-
-
- "python-telegram-bot>=13.0,<20.0"
- ],
- setup_requires=["setuptools_scm"],
- tests_require=["pytest"],
- )
|