Mercurial > hg > numerics
comparison setup.py @ 150:8a1fe454c98a
STUB
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Mon, 13 Apr 2015 10:17:47 -0700 |
| parents | ce0e1e5efe77 |
| children | 28215de61342 |
comparison
equal
deleted
inserted
replaced
| 149:dcedbe63d2c6 | 150:8a1fe454c98a |
|---|---|
| 21 from setuptools import setup | 21 from setuptools import setup |
| 22 kw['entry_points'] = """ | 22 kw['entry_points'] = """ |
| 23 [console_scripts] | 23 [console_scripts] |
| 24 bar-chart = numerics.bar:main | 24 bar-chart = numerics.bar:main |
| 25 cat-columns = numerics.cat_columns:main | 25 cat-columns = numerics.cat_columns:main |
| 26 cleanse = numerics.clean:main | |
| 26 display-fraction = numerics.text_display:main | 27 display-fraction = numerics.text_display:main |
| 27 histogram = numerics.histogram:main | 28 histogram = numerics.histogram:main |
| 28 interpolate = numerics.interpolation:main | 29 interpolate = numerics.interpolation:main |
| 29 manipulate = numerics.manipulate:main | 30 manipulate = numerics.manipulate:main |
| 30 mean = numerics.mean:main | 31 mean = numerics.mean:main |
| 34 smooth = numerics.smooth:main | 35 smooth = numerics.smooth:main |
| 35 sum = numerics.sum:main | 36 sum = numerics.sum:main |
| 36 types = numerics.convert:main | 37 types = numerics.convert:main |
| 37 """ | 38 """ |
| 38 # TODO: | 39 # TODO: |
| 39 # cleanse = numerics.clean:main # cleans up outliers | |
| 40 # fold = numerics.fold:main # fold data through functions (reduce) | 40 # fold = numerics.fold:main # fold data through functions (reduce) |
| 41 kw['install_requires'] = dependencies | 41 kw['install_requires'] = dependencies |
| 42 except ImportError: | 42 except ImportError: |
| 43 from distutils.core import setup | 43 from distutils.core import setup |
| 44 kw['requires'] = dependencies | 44 kw['requires'] = dependencies |
