dominiontabs/setup.py
2018-11-17 15:18:13 -08:00

27 lines
875 B
Python

from setuptools import setup, find_packages
version = '3.6'
setup(
name="domdiv",
version=version,
entry_points={
'console_scripts': [
"dominion_dividers = domdiv.main:main"
],
},
packages=find_packages(exclude=['tests']),
install_requires=["reportlab>=3.4.0",
"Pillow>=4.1.0"],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-flake8", "six"],
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."
)