-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (36 loc) · 1.05 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
32
33
34
35
36
37
38
39
"""
dm-tools: Command-line tools for the lazy DM
"""
import os
from setuptools import find_packages, setup
reqs_path = os.path.join(os.path.dirname(__file__), 'requirements.txt')
with open(reqs_path, 'r') as req_file:
dependencies = req_file.readlines()
setup(
name='dm-tools',
version='0.1.0',
license='MIT',
author='Cody Shepherd',
author_email='[email protected]',
description='Command-line tools for the lazy DM.',
long_description=__doc__,
packages=find_packages(exclude=['tests']),
include_package_data=True,
package_data={
'plebs': ['*.txt', '*.yaml'],
'pockets': ['*.txt', '*.yaml'],
'taverns': ['*.txt', '*.yaml'],
},
zip_safe=False,
platforms='any',
python_requires='>=3.10',
install_requires=dependencies,
entry_points={
'console_scripts': [
'live-game = live_game.live_game:start',
'plebs = plebs.plebs:plebs',
'pockets = plebs.pockets:pockets',
'taverns = taverns.taverns:taverns',
],
},
)