2021-10-31 14:44:14 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
from webgames import __version__
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='webgames',
|
|
|
|
version=__version__,
|
|
|
|
author='s3lph',
|
|
|
|
author_email='',
|
|
|
|
description='',
|
|
|
|
license='MIT',
|
|
|
|
keywords='games,multiplayer,web',
|
|
|
|
url='',
|
|
|
|
packages=find_packages(exclude=['*.test']),
|
|
|
|
long_description='',
|
|
|
|
python_requires='>=3.6',
|
|
|
|
install_requires=[
|
2022-09-30 22:25:07 +02:00
|
|
|
'bottle==0.12.23',
|
|
|
|
'Jinja2==3.1.2',
|
|
|
|
'MarkupSafe==2.1.1',
|
|
|
|
'namesgenerator==0.3',
|
2021-10-31 14:44:14 +01:00
|
|
|
'sudoku-manager==1.0.6',
|
|
|
|
'sudokugen==0.2.1',
|
|
|
|
],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'webgames = webgames:main'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Bottle',
|
|
|
|
'Intended Audience :: System Administrators',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Topic :: Games/Entertainment :: Puzzle Games'
|
|
|
|
],
|
|
|
|
)
|