dominiontabs/setup.py
2019-04-03 17:05:50 -07:00

27 lines
878 B
Python

from setuptools import setup, find_packages
version = '3.7.1'
setup(
name="domdiv",
version=version,
entry_points={
'console_scripts': [
"dominion_dividers = domdiv.main:main"
],
},
packages=find_packages(exclude=['tests']),
install_requires=["reportlab==3.5.17",
"Pillow==5.3.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."
)