27 lines
		
	
	
		
			559 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			559 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[tool.poetry]
 | 
						|
name = "anki-sync-server"
 | 
						|
version = "0.1.0"
 | 
						|
description = "Self-hosted Anki Sync Server."
 | 
						|
authors = ["Vikash Kothary <kothary.vikash@gmail.com>"]
 | 
						|
 | 
						|
[tool.poetry.dependencies]
 | 
						|
python = "^3.7"
 | 
						|
beautifulsoup4 = "^4.9.1"
 | 
						|
requests = "^2.24.0"
 | 
						|
markdown = "^3.2.2"
 | 
						|
send2trash = "^1.5.0"
 | 
						|
pyaudio = "^0.2.11"
 | 
						|
decorator = "^4.4.2"
 | 
						|
psutil = "^5.7.2"
 | 
						|
distro = "^1.5.0"
 | 
						|
webob = "^1.8.6"
 | 
						|
 | 
						|
[tool.poetry.dev-dependencies]
 | 
						|
mkdocs = "^1.1.2"
 | 
						|
jupyter = "^1.0.0"
 | 
						|
jupyterlab = "^2.2.2"
 | 
						|
 | 
						|
[build-system]
 | 
						|
requires = ["poetry>=0.12"]
 | 
						|
build-backend = "poetry.masonry.api"
 |