Spaces:
Configuration error
Configuration error
File size: 866 Bytes
69373e6 c903325 69373e6 c903325 69373e6 c903325 69373e6 cc5c775 c903325 69373e6 c903325 | 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 | from setuptools import setup, find_packages
setup(name='pycatan',
version='0.14',
description='A Python Module for playing The Settlers of Catan',
url='https://github.com/josefwaller/PyCatan',
long_description=open("readme.md").read(),
long_description_content_type='text/markdown',
author='Josef Waller',
author_email='josef@siriusapplications.com',
license='MIT',
install_requires=[
"flask>=2.0.0",
"colorama>=0.4.0",
"requests>=2.25.0" # For streaming broadcaster HTTP calls
],
packages=find_packages(),
package_data={
'pycatan': [
'config/data/*.json',
'static/css/*.css',
'static/js/*.js',
'templates/*.html'
]
},
include_package_data=True,
zip_safe=False)
|