13 lines
		
	
	
		
			383 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			383 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from setuptools import setup, find_packages
 | |
| 
 | |
| setup(
 | |
|     name='priorConditionedAnneling',
 | |
|     version='0.0.1',
 | |
|     # url='https://github.com/mypackage.git',
 | |
|     # author='Author Name',
 | |
|     # author_email='author@gmail.com',
 | |
|     # description='Description of my package',
 | |
|     packages=['priorConditionedAnnealing'],
 | |
|     # install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
 | |
| )
 |