mirror of https://github.com/pallets/flask.git
				
				
				
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			477 B
		
	
	
	
		
			Python
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			477 B
		
	
	
	
		
			Python
		
	
	
	
| import re
 | |
| 
 | |
| from setuptools import setup
 | |
| 
 | |
| with open("src/flask/__init__.py", encoding="utf8") as f:
 | |
|     version = re.search(r'__version__ = "(.*?)"', f.read()).group(1)
 | |
| 
 | |
| # Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
 | |
| setup(
 | |
|     name="Flask",
 | |
|     version=version,
 | |
|     install_requires=[
 | |
|         "Werkzeug>=0.15",
 | |
|         "Jinja2>=2.10.1",
 | |
|         "itsdangerous>=0.24",
 | |
|         "click>=5.1",
 | |
|     ],
 | |
|     extras_require={"dotenv": ["python-dotenv"]},
 | |
| )
 |