30 lines
		
	
	
		
			488 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			488 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [[source]]
 | |
| name = "pypi"
 | |
| url = "https://pypi.org/simple"
 | |
| verify_ssl = true
 | |
| 
 | |
| [dev-packages]
 | |
| flake8 = "*"
 | |
| mypy = "*"
 | |
| isort = "*"
 | |
| pytest = "*"
 | |
| rope = "*"
 | |
| 
 | |
| [packages]
 | |
| protobuf = "*"
 | |
| jinja2 = "*"
 | |
| grpclib = "*"
 | |
| stringcase = "*"
 | |
| black = "*"
 | |
| 
 | |
| [requires]
 | |
| python_version = "3.7"
 | |
| 
 | |
| [scripts]
 | |
| plugin = "protoc --plugin=protoc-gen-custom=betterproto/plugin.py --custom_out=output"
 | |
| generate = "python betterproto/tests/generate.py"
 | |
| test = "pytest ./betterproto/tests"
 | |
| 
 | |
| [pipenv]
 | |
| allow_prereleases = true
 |