-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.31 KB
/
setup.py
File metadata and controls
48 lines (44 loc) · 1.31 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
"""
Setup configuration for Skybridge.
Versionamento: Git tags via setuptools_scm (PL001)
A versão é dinâmica e lida de git tags - NÃO edite manualmente.
"""
from pathlib import Path
from setuptools import setup, find_packages
README = (Path(__file__).parent / "README.md").read_text(encoding="utf-8")
setup(
name="skybridge",
# version é gerada dinamicamente pelo setuptools_scm via pyproject.toml
description="Skybridge - Microkernel RPC Platform",
long_description=README,
long_description_content_type="text/markdown",
author="Skybridge Team",
python_requires=">=3.11",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"python-dotenv>=1.0.0",
"typer>=0.9.0",
"requests>=2.31.0",
"rich>=13.7.0",
"pyngrok>=7.0.0",
"redis>=5.0.0", # PRD018 Fase 2 - Job Queue
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"httpx>=0.25.0",
],
},
entry_points={
"console_scripts": [
"skybridge-api=skybridge.platform.bootstrap.app:main",
"sb=apps.cli.main:main",
],
},
)