57 lines
No EOL
1.8 KiB
Python
57 lines
No EOL
1.8 KiB
Python
"""Setup script for ISO Bot - Isometric Game Bot Engine."""
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
with open("requirements.txt", "r", encoding="utf-8") as fh:
|
|
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
|
|
|
|
setup(
|
|
name="iso-bot",
|
|
version="0.1.0",
|
|
author="Hoid",
|
|
author_email="hoid@cloonar.com",
|
|
description="Screen-reading bot engine for isometric games, starting with Diablo II: Resurrected",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://git.cloonar.com/openclawd/iso-bot",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Games/Entertainment",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
"Topic :: Scientific/Engineering :: Image Recognition",
|
|
],
|
|
python_requires=">=3.11",
|
|
install_requires=requirements,
|
|
extras_require={
|
|
"dev": [
|
|
"pytest>=7.4.0",
|
|
"pytest-cov>=4.1.0",
|
|
"black>=23.0.0",
|
|
"mypy>=1.5.0",
|
|
"flake8>=6.0.0",
|
|
],
|
|
"advanced": [
|
|
"scikit-image>=0.21.0",
|
|
"scipy>=1.11.0",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"iso-bot=games.d2r.game:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
package_data={
|
|
"games.d2r": ["templates/*", "config/*"],
|
|
},
|
|
) |