mirror of
https://github.com/correl/mtgsqlive.git
synced 2024-11-24 11:09:52 +00:00
Update setup.py
This commit is contained in:
parent
0b46d58d29
commit
ad2475438d
1 changed files with 9 additions and 7 deletions
16
setup.py
16
setup.py
|
@ -1,25 +1,27 @@
|
||||||
"""Installation setup for MTGSQLite."""
|
"""Installation setup for MTGSQLite."""
|
||||||
|
|
||||||
|
import pathlib
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
# Necessary for TOX
|
# Necessary for TOX
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="MTGSQLite",
|
name="MTGSQLite",
|
||||||
version=0.1,
|
version=0.2,
|
||||||
author="Zach Halpern",
|
author="Zach Halpern",
|
||||||
author_email="Zahalpern+github@gmail.com",
|
author_email="zach@mtgjson.com",
|
||||||
url="https://github.com/mtgjson/mtgsqlive/",
|
url="https://github.com/mtgjson/mtgsqlive/",
|
||||||
description="Convert MTGJSONv4 files to SQLite format for Magic: The Gathering",
|
description="Convert MTGJSONv4 and MTGJSONv5 files to SQLite format for Magic: The Gathering",
|
||||||
long_description=open("README.md", "r").read(),
|
long_description=pathlib.Path("README.md").open().read(),
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
license="GPL-3.0",
|
license="MIT",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"License :: OSI Approved :: MIT",
|
||||||
],
|
],
|
||||||
keywords="Magic: The Gathering, MTG, JSON, Card Games, Collectible, Trading Cards",
|
keywords="Magic: The Gathering, MTG, JSON, Card Games, Collectible, Trading Cards",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
install_requires=["requests","pandas"],
|
install_requires=pathlib.Path("requirements.txt").open().readlines(),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue