* reorganize card db, add doit file * make card_db_src a true source by removing untranslated entries, removing the untranslated field * turn update language script into a better compiler * move tools into submodule * remove language db comparison test; add travis compile and check-in of card db Co-authored-by: Nick Vance <nickv2002@users.noreply.github.com>
26 lines
933 B
Python
26 lines
933 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="domdiv",
|
|
entry_points={
|
|
"console_scripts": [
|
|
"dominion_dividers = domdiv.main:main",
|
|
"domdiv_update_language = domdiv.tools.update_language:run",
|
|
]
|
|
},
|
|
package_dir={"": "src"},
|
|
packages=["domdiv"],
|
|
use_scm_version=True,
|
|
setup_requires=["setuptools_scm", "pytest-runner"],
|
|
install_requires=["reportlab", "Pillow"],
|
|
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
|
|
url="http://domtabs.sandflea.org",
|
|
include_package_data=True,
|
|
author="Peter Gorniak",
|
|
author_email="sumpfork@mailmight.net",
|
|
description="Divider Generation for the Dominion Card Game",
|
|
keywords=["boardgame", "cardgame", "dividers"],
|
|
long_description="This script and library generate dividers for the Dominion Card Game by Rio Grande Games.\
|
|
See it in action at http://domtabs.sandflea.org.",
|
|
)
|