25 lines
785 B
Python
25 lines
785 B
Python
from setuptools import setup, find_packages
|
|
|
|
version = '3.4.0'
|
|
|
|
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"],
|
|
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."
|
|
)
|