-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 967 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
from setuptools import setup, find_packages
setup(
name="ajedrez-asir",
version="0.1",
packages=find_packages(),
install_requires=['aiohttp', 'aiohttp-jinja2', 'python-chess'],
package_data={
'chessasir': ['chess-client/*.*'],
},
entry_points={
'console_scripts': [
'ajedrezasirserver = chessasir.server:main'
]
},
author="Oscar (dotoscat) Triano",
description="ajedrez online para ASIR",
url="https://github.com/dotoscat/ajedrez-online",
keywords="chess server",
license="AGPL-3.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Games/Entertainment :: Board Games"
],
)