-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 808 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 808 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
26
27
28
29
30
31
"""Installation script for dnd."""
from setuptools import setup, find_packages
setup(
name='dnd',
version='1.0',
description='online character sheets for Dungeons & Dragons v2.thomaas',
author='nihlaeth',
author_email='info@nihlaeth.nl',
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'user_config',
'aiohttp',
'aiosmtplib>=1.0.1',
'markupsafe',
'markdown',
'aiohttp_session[secure]',
'Jinja2',
'aiohttp_jinja2',
'motor',
'cchardet',
'aiodns',
'aiohttp-login',
'pyyaml',
'uvloop',
'roman'],
entry_points={
'console_scripts': ['dnd = dnd:start']},
package_data={'dnd': ['static/*', 'templates/*', 'config/*']},
)