22 lines
		
	
	
		
			485 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			485 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [tool.poetry]
 | |
| name = "botany-notify"
 | |
| version = "0.1.0"
 | |
| description = "Get a desktop notification if your plant needs water"
 | |
| authors = ["Gergely Polonkai <gergely@polonkai.eu>"]
 | |
| license = "GPL-3.0-or-later"
 | |
| 
 | |
| [tool.poetry.dependencies]
 | |
| python = "^3.6"
 | |
| paramiko = "^2.7.1"
 | |
| notify2 = "^0.3.1"
 | |
| dbus-python = "^1.2.16"
 | |
| 
 | |
| [tool.poetry.dev-dependencies]
 | |
| pylint = "^2.5.3"
 | |
| pytest = "^5.4.3"
 | |
| pytest-mock = "^3.2.0"
 | |
| 
 | |
| [build-system]
 | |
| requires = ["poetry>=0.12"]
 | |
| build-backend = "poetry.masonry.api"
 |