* make domdiv a better behaved python package (see #131) * move code from __init__.py to main.py to make import quicker and make version work without dependencies * update languages import to use pkg_resources, fix tests * update readmes * change font lookup, font readme notes
20 lines
553 B
Python
20 lines
553 B
Python
from domdiv import __version__
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="domdiv",
|
|
version=__version__,
|
|
entry_points={
|
|
'console_scripts': [
|
|
"dominion_dividers = domdiv.main:main"
|
|
],
|
|
},
|
|
packages=find_packages(exclude=['tests']),
|
|
install_requires=["reportlab>=2.5",
|
|
"Pillow>=2.1.0"],
|
|
include_package_data=True,
|
|
author="Sumpfork",
|
|
author_email="sumpfork@mailmight.net",
|
|
description="Divider Generation for the Dominion Card Game"
|
|
)
|