forked from sumpfork/dominiontabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(
name="domdiv",
entry_points={
"console_scripts": [
"dominion_dividers = domdiv.main:main",
"domdiv_update_language = domdiv.tools.update_language:run",
"domdiv_bgg_release = domdiv.tools.bgg_release:make_bgg_release",
]
},
package_dir={"": "src"},
packages=["domdiv"],
use_scm_version=True,
setup_requires=["setuptools_scm", "pytest-runner"],
install_requires=["reportlab", "Pillow", "configargparse"],
tests_require=["pytest", "six", "pre-commit", "doit"],
url="http://domtabs.sandflea.org",
project_urls={
"Say Thanks!": "https://boardgamegeek.com/thread/926575/web-page-generate-tabbed-dividers",
"Source": "https://github.com/sumpfork/dominiontabs",
"Tracker": "https://github.com/sumpfork/dominiontabs/issues",
},
include_package_data=True,
author="Peter Gorniak",
author_email="[email protected]",
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://domdiv.bgtools.net.",
)