26 lines
		
	
	
		
			482 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			482 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [project]
 | |
| name = "school-management"
 | |
| version = "0.1.0"
 | |
| description = "Application web de gestion scolaire"
 | |
| requires-python = ">=3.9"
 | |
| dependencies = [
 | |
|     "Flask>=2.3.3",
 | |
|     "Flask-SQLAlchemy>=3.0.5",
 | |
|     "Flask-WTF>=1.1.1",
 | |
|     "WTForms>=3.0.1",
 | |
| ]
 | |
| 
 | |
| [build-system]
 | |
| requires = ["hatchling"]
 | |
| build-backend = "hatchling.build"
 | |
| 
 | |
| [tool.hatch.build.targets.wheel]
 | |
| packages = ["."]
 | |
| 
 | |
| [tool.uv]
 | |
| dev-dependencies = [
 | |
|     "pytest>=7.4.0",
 | |
|     "pytest-flask>=1.2.0",
 | |
|     "pytest-cov>=4.1.0",
 | |
| ]
 |