17 lines
		
	
	
		
			408 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			408 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[project]
 | 
						|
name = "common-lib"
 | 
						|
version = "0.0.15"
 | 
						|
description = "Библиотека общих компонентов для микросервисов yobble"
 | 
						|
authors = [{ name = "cheykrym", email = "you@example.com" }]
 | 
						|
license = "MIT"
 | 
						|
dependencies = [
 | 
						|
    "fastapi",
 | 
						|
    "sqlalchemy",
 | 
						|
    "httpx",
 | 
						|
    "slowapi"
 | 
						|
]
 | 
						|
 | 
						|
[build-system]
 | 
						|
requires = ["setuptools", "wheel"]
 | 
						|
build-backend = "setuptools.build_meta"
 |