11 lines
		
	
	
		
			274 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			274 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| from __future__ import unicode_literals
 | |
| from distutils.core import setup
 | |
| 
 | |
| setup(name='theoEnc',
 | |
|       version='1.0',
 | |
|       description='Library for using the OTP (OneTimePad) in Python3',
 | |
|       author='Benjamin Burkhardt',
 | |
|       packages=['theoEnc'])
 |