- transition to `pyproject.toml` config - include license (Apache-2.0) - add dev tools - add documentation config (`mkdocs` based) - turn `README.md` into a symlink to docs `index.md` - add convenience scripts for testing and linting
		
			
				
	
	
		
			26 lines
		
	
	
		
			269 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			269 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Python virtual environment:
 | 
						|
/.venv*/
 | 
						|
/venv*/
 | 
						|
/.env*/
 | 
						|
/env*/
 | 
						|
 | 
						|
# IDE settings:
 | 
						|
/.idea/
 | 
						|
/.vscode/
 | 
						|
 | 
						|
# Distribution / build files:
 | 
						|
*.egg-info/
 | 
						|
/dist/
 | 
						|
/docs/build/
 | 
						|
/site/
 | 
						|
 | 
						|
# Python cache / compiled files:
 | 
						|
__pycache__/
 | 
						|
*.py[cod]
 | 
						|
 | 
						|
# Testing:
 | 
						|
/.coverage
 | 
						|
 | 
						|
# mypy:
 | 
						|
.mypy_cache/
 |