diff --git a/__init__.py b/__init__.py index da2d710..aa285b8 100644 --- a/__init__.py +++ b/__init__.py @@ -1,3 +1,3 @@ -#main package +# main package -__version__ = '1.9' +__version__ = '1.9.1' diff --git a/setup.py b/setup.py index 9cc4c0c..d5e677d 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,9 @@ from __init__ import __version__ from distribute_setup import use_setuptools +from setuptools import setup, find_packages + use_setuptools() -from setuptools import setup,find_packages setup( name="dominiontabs", @@ -10,12 +11,13 @@ setup( scripts=["dominion_tabs.py"], packages=find_packages(), install_requires=["reportlab>=2.5", - "PIL>=1.1.7"], - package_data = { - '' : ['*.txt','*.png'] - }, + "Pillow>=2.1.0", + "PyYAML"], + package_data={ + '': ['*.txt', '*.png'] + }, author="Sumpfork", author_email="sumpfork@mailmight.net", description="Tab Divider Generation for the Dominion Card Game" - ) +)