-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
59 lines (53 loc) · 1.48 KB
/
Copy pathsetup.cfg
File metadata and controls
59 lines (53 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
# setup.cfg
[metadata]
name = clinical-notifier-api
version = 0.1.0
description = Scalable API for Clinical Recommendations with Event-Driven Notifications
long_description = file: README.md
long_description_content_type = text/markdown
author = Tiago Rodrigues
license = MIT
license_files = LICENSE
url = https://github.com/tiagoepr/ClinicalNotifierAPI
project_urls =
Documentation = https://github.com/tiagoepr/ClinicalNotifierAPI
Source = https://github.com/tiagoepr/ClinicalNotifierAPI
Issues = https://github.com/tiagoepr/ClinicalNotifierAPI/issues
classifiers =
Programming Language :: Python :: 3.11
Framework :: FastAPI
License :: OSI Approved :: MIT License
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
keywords = python, fastapi, rabbitmq, redis, sqlite, clinical, recommendations, jwt
[options]
packages = find:
python_requires = >=3.11
include_package_data = True
install_requires =
fastapi==0.115.4
uvicorn[standard]==0.32.0
starlette==0.40.0
pydantic==2.9.2
pydantic-settings==2.6.1
SQLAlchemy==2.0.36
aiosqlite==0.20.0
aio-pika==9.4.3
python-jose[cryptography]==3.3.0
passlib[bcrypt]==1.7.4
python-multipart==0.0.12
redis==5.0.8
orjson==3.10.7
[options.extras_require]
dev =
black
isort
pytest
pytest-asyncio
httpx
[options.package_data]
app = *.json, *.yaml, *.yml
[options.entry_points]
console_scripts =
clinical-api = app.cli:main