-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 945 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 945 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
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python3
from setuptools import setup
with open("lemonade_arcade/version.py", encoding="utf-8") as fp:
version = fp.read().split('"')[1]
setup(
name="lemonade-arcade",
version=version,
description="AI-powered game generator and arcade using Lemonade Server",
author="Lemonade SDK",
packages=["lemonade_arcade", "lemonade_arcade.builtin_games"],
install_requires=[
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pygame>=2.5.0",
"httpx>=0.25.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.6",
],
entry_points={
"console_scripts": [
"lemonade-arcade=lemonade_arcade.cli:main",
],
"gui_scripts": [
"lemonade-arcade-gui=lemonade_arcade.main:main",
],
},
python_requires=">=3.8",
package_data={
"lemonade_arcade": ["static/**/*", "templates/**/*"],
},
)
# Copyright (c) 2025 AMD