Magic-Spoiler/setup.py
ebbit1q 3dd54f59d8
remove writing of json files (#295)
Co-authored-by: tooomm <tooomm@users.noreply.github.com>
2023-03-25 14:34:46 +01:00

25 lines
864 B
Python

"""Installation setup for Magic-Spoiler."""
import setuptools
# Necessary for TOX
setuptools.setup(
name="Magic-Spoiler",
version="0.1.0",
author="Zach Halpern",
author_email="zach@cockatrice.us",
url="https://github.com/Cockatrice/Magic-Spoiler/",
description="Build XML files for distribution of MTG spoiler cards",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
license="GPL-3.0",
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
keywords="Magic: The Gathering, MTG, XML, Card Games, Collectible, Trading Cards",
packages=setuptools.find_packages(),
)