40 lines
968 B
Python
40 lines
968 B
Python
|
#!/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=[
|
||
|
'jinja2==2.11.1',
|
||
|
'bottle==0.12.18',
|
||
|
'sudoku-manager==1.0.6',
|
||
|
'sudokugen==0.2.1',
|
||
|
'namesgenerator==0.3'
|
||
|
],
|
||
|
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'
|
||
|
],
|
||
|
)
|