-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 784 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 784 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
# setup.py
from setuptools import setup, find_packages
setup(
name="hoga",
version="0.0.1",
description="extensible and self hosted viewer for archived social media content",
url="https://github.com/marceloexc/hoga",
author="marceloexc",
license="GPLv3",
packages=find_packages(),
# packages=find_packages(where="hoga",exclude=["hoga.egg_info",]),
# package_dir={"": "hoga"},
install_requires=[
"fastapi-slim~=0.111.0",
"SQLAlchemy~=2.0.30",
"uvicorn~=0.29.0",
"sqlmodel~=0.0.19",
"pydantic~=2.7.1",
"libsass~=0.23.0",
"Jinja2~=3.1.4",
"python-multipart~=0.0.9"
],
entry_points={
"console_scripts": [
"hoga = hoga.__main__:main",
],
},
)