forked from sumpfork/dominiontabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 933 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 933 Bytes
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
from setuptools import setup
setup(
name="domdiv",
entry_points={
"console_scripts": [
"dominion_dividers = domdiv.main:main",
"domdiv_update_language = domdiv.tools.update_language:run",
]
},
package_dir={"": "src"},
packages=["domdiv"],
use_scm_version=True,
setup_requires=["setuptools_scm", "pytest-runner"],
install_requires=["reportlab", "Pillow"],
tests_require=["pytest", "six", "pytest-flake8", "pre-commit", "doit"],
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.",
)