-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
45 lines (42 loc) · 1002 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from distutils.core import setup
import setuptools
setup(
name="dndme",
version="0.0.5",
description="Tools for helping the DM run Dungeons & Dragons sessions.",
author="Mike Pirnat",
packages=setuptools.find_packages(),
install_requires=[
"attrs",
"click",
"prompt-toolkit",
"pytoml",
"six",
"wcwidth",
"flask",
],
extras_require={
"test": [
"coverage",
"pytest",
"pytest-cov",
"pytest-runner",
"tox",
"pylint",
],
"dev": [
"pip-tools",
"pre-commit",
],
},
tests_require=["pytest"],
setup_requires=["pytest-runner"],
entry_points={
"console_scripts": [
"dndme = dndme.shell:main_loop",
"dndme-new-campaign = dndme.new_campaign:main",
"dndme-new-content = dndme.new_content:main",
],
},
)