mirror of
				https://github.com/KevinMidboe/tableprint.git
				synced 2025-10-29 18:00:16 +00:00 
			
		
		
		
	soften numpy requirement
This commit is contained in:
		
							
								
								
									
										1
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								setup.py
									
									
									
									
									
								
							| @@ -1,5 +1,4 @@ | |||||||
| from setuptools import setup, find_packages | from setuptools import setup, find_packages | ||||||
| import tableprint |  | ||||||
|  |  | ||||||
| setup( | setup( | ||||||
|     name='tableprint', |     name='tableprint', | ||||||
|   | |||||||
| @@ -6,7 +6,10 @@ A module to print and display ASCII formatted tables of data | |||||||
| """ | """ | ||||||
|  |  | ||||||
| from __future__ import print_function | from __future__ import print_function | ||||||
| import numpy as np | try: | ||||||
|  |     import numpy as np | ||||||
|  | except ImportError: | ||||||
|  |     pass | ||||||
|  |  | ||||||
| # exports | # exports | ||||||
| __all__ = ['table', 'row', 'header', 'hr', 'humantime', 'frame'] | __all__ = ['table', 'row', 'header', 'hr', 'humantime', 'frame'] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user