2025-08-21 09:03:48 -07:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "mtg-deckbuilder"
|
2025-09-04 19:30:22 -07:00
|
|
|
version = "2.2.6"
|
2025-08-21 09:03:48 -07:00
|
|
|
description = "A command-line tool for building and analyzing Magic: The Gathering decks"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {file = "LICENSE"}
|
|
|
|
authors = [
|
|
|
|
{name = "Your Name", email = "your.email@example.com"}
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
]
|
2025-08-21 10:50:22 -07:00
|
|
|
requires-python = ">=3.11" # This is what it was built with anyway
|
2025-08-21 09:03:48 -07:00
|
|
|
dependencies = [
|
|
|
|
"pandas>=1.5.0",
|
|
|
|
"numpy>=1.24.0",
|
|
|
|
"requests>=2.31.0",
|
2025-08-22 16:32:39 -07:00
|
|
|
"tqdm>=4.66.0",
|
2025-08-21 09:03:48 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
|
|
"mypy>=1.3.0",
|
|
|
|
"pandas-stubs>=2.0.0",
|
|
|
|
"pytest>=8.0.0",
|
|
|
|
]
|
2025-08-22 16:32:39 -07:00
|
|
|
reporting = [
|
|
|
|
"prettytable>=3.9.0",
|
|
|
|
]
|
|
|
|
pricecheck = [
|
|
|
|
"scrython>=1.10.0",
|
|
|
|
]
|
2025-08-21 09:03:48 -07:00
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
mtg-deckbuilder = "code.main:run_menu"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/mwisnowski/mtg_python_deckbuilder"
|
|
|
|
Repository = "https://github.com/mwisnowski/mtg_python_deckbuilder"
|
|
|
|
Issues = "https://github.com/mwisnowski/mtg_python_deckbuilder/issues"
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
include = ["code*"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
|
|
"*" = ["*.csv"]
|