mirror of https://github.com/pallets/flask.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			367 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			367 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>=0.15",
 | |
|         "Jinja2>=2.10.1",
 | |
|         "itsdangerous>=0.24",
 | |
|         "click>=5.1",
 | |
|     ],
 | |
|     extras_require={
 | |
|         "async": ["asgiref>=3.2"],
 | |
|         "dotenv": ["python-dotenv"],
 | |
|     },
 | |
| )
 |