-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 808 Bytes
/
setup.py
File metadata and controls
24 lines (22 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
from setuptools import setup, find_packages
test_require = ["pytest", "aioresponses", "pytest-aiohttp"]
dev_require = ["black", "isort", "pip-utils", "mypy"] + test_require
setup(
name="rolling",
version="0.13.1",
description="Role game engine",
author="Bastien Sevajol",
author_email="sevajol.bastien@gmail.com",
url="https://github.com/buxx/rolling",
packages=find_packages(),
include_package_data=True,
extras_require={"dev": dev_require, "test": test_require},
entry_points={
"console_scripts": [
"rolling-server=rolling.server.run:main",
"rolling-server-turn=rolling.server.turn:main",
"rolling-server-manage=rolling.server.manage:main",
"rolling-tracim-sync=rolling.tracim.sync:main",
]
},
)