work on distribution

This commit is contained in:
Sumpfork 2017-11-21 13:47:13 -08:00
parent 8f96a8cb0d
commit ba0c184a24
3 changed files with 13 additions and 3 deletions

3
.gitignore vendored
View File

@ -7,3 +7,6 @@ generated
build
dist
*~
dominion_dividers.pdf
dominion_dividers.png
.DS_Store

2
setup.cfg Normal file
View File

@ -0,0 +1,2 @@
[metadata]
description-file = README.md

View File

@ -1,8 +1,10 @@
from setuptools import setup, find_packages
version = '3.3.2'
setup(
name="domdiv",
version='3.3.1',
version=version,
entry_points={
'console_scripts': [
"dominion_dividers = domdiv.main:main"
@ -12,7 +14,10 @@ setup(
install_requires=["reportlab>=3.4.0",
"Pillow>=4.1.0"],
include_package_data=True,
author="Sumpfork",
author="Peter Gorniak",
author_email="sumpfork@mailmight.net",
description="Divider Generation for the Dominion Card Game"
description="Divider Generation for the Dominion Card Game",
url="http://domtabs.sandflea.org",
download_url='https://github.com/sumpfork/dominiontabs/archive/v{}.tar.gz'.format(version),
keywords=['boardgame', 'cardgame', 'dividers']
)