Mercurial > hg > numerics
comparison setup.py @ 103:067aa27050a3
limping along towards bar charts
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 15 Mar 2015 08:28:42 -0700 |
parents | b7d4b7f84883 |
children | fe820a3afa48 |
comparison
equal
deleted
inserted
replaced
102:1b0854ee78e0 | 103:067aa27050a3 |
---|---|
1 # -*- coding: utf-8 -*-""" | |
2 | |
1 """ | 3 """ |
2 setup packaging script for numerics python package | 4 setup packaging script for numerics python package |
3 """ | 5 """ |
4 | 6 |
5 import os | 7 import os |
14 kw = {} | 16 kw = {} |
15 try: | 17 try: |
16 from setuptools import setup | 18 from setuptools import setup |
17 kw['entry_points'] = """ | 19 kw['entry_points'] = """ |
18 [console_scripts] | 20 [console_scripts] |
21 bar-chart = numerics.bar:main | |
19 cat-columns = numerics.cat_columns:main | 22 cat-columns = numerics.cat_columns:main |
20 display-fraction = numerics.text_display:main | 23 display-fraction = numerics.text_display:main |
21 histogram = numerics.histogram:main | 24 histogram = numerics.histogram:main |
22 interpolate = numerics.interpolation:main | 25 interpolate = numerics.interpolation:main |
23 manipulate = numerics.manipulate:main | 26 manipulate = numerics.manipulate:main |