Skip to content

Commit

Permalink
setup started for py2app
Browse files Browse the repository at this point in the history
  • Loading branch information
norton120 committed Nov 26, 2024
1 parent c3dec18 commit b889521
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions installable_apps/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import setup, find_packages

setup(
name="letta_installable",
version="0.1.0",
packages=find_packages(),
install_requires=[
# Read requirements from requirements.txt
req.strip() for req in open("requirements.txt").readlines()
],
entry_points={
'console_scripts': [
'letta-startup=startup:main',
],
},
include_package_data=True,
package_data={
'': ['*.txt', '*.rst', '*.html', '*.css', '*.js'],
},
)

0 comments on commit b889521

Please sign in to comment.