mirror of https://github.com/pallets/flask.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			374 B
		
	
	
	
		
			Python
		
	
	
	
| from setuptools import setup
 | |
| 
 | |
| # Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
 | |
| setup(
 | |
|     name="Flask",
 | |
|     install_requires=[
 | |
|         "Werkzeug >= 2.0",
 | |
|         "Jinja2 >= 3.0",
 | |
|         "itsdangerous >= 2.0",
 | |
|         "click >= 7.1.2",
 | |
|     ],
 | |
|     extras_require={
 | |
|         "async": ["asgiref >= 3.2"],
 | |
|         "dotenv": ["python-dotenv"],
 | |
|     },
 | |
| )
 |