2019-01-17 22:00:27 +00:00
|
|
|
"""Installation setup for MTGSQLite."""
|
|
|
|
|
2020-04-22 21:32:36 +00:00
|
|
|
import pathlib
|
2019-01-17 22:00:27 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
# Necessary for TOX
|
|
|
|
setuptools.setup(
|
|
|
|
name="MTGSQLite",
|
2020-04-22 21:32:36 +00:00
|
|
|
version=0.2,
|
2019-01-17 22:00:27 +00:00
|
|
|
author="Zach Halpern",
|
2020-04-22 21:32:36 +00:00
|
|
|
author_email="zach@mtgjson.com",
|
2019-01-17 22:00:27 +00:00
|
|
|
url="https://github.com/mtgjson/mtgsqlive/",
|
2020-04-22 21:32:36 +00:00
|
|
|
description="Convert MTGJSONv4 and MTGJSONv5 files to SQLite format for Magic: The Gathering",
|
|
|
|
long_description=pathlib.Path("README.md").open().read(),
|
2019-01-17 22:00:27 +00:00
|
|
|
long_description_content_type="text/markdown",
|
2020-04-22 21:32:36 +00:00
|
|
|
license="MIT",
|
2019-01-17 22:00:27 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
2020-04-22 21:32:36 +00:00
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"License :: OSI Approved :: MIT",
|
2019-01-17 22:00:27 +00:00
|
|
|
],
|
|
|
|
keywords="Magic: The Gathering, MTG, JSON, Card Games, Collectible, Trading Cards",
|
|
|
|
packages=setuptools.find_packages(),
|
2020-04-22 21:32:36 +00:00
|
|
|
install_requires=pathlib.Path("requirements.txt").open().readlines(),
|
2019-01-17 22:00:27 +00:00
|
|
|
)
|