Mercurial > hg > numerics
comparison setup.py @ 61:82a18c9337c3
more stubbing
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 22 Jan 2015 13:41:19 -0800 |
parents | bbfe25d23a9f |
children | 18c0820bfe12 |
comparison
equal
deleted
inserted
replaced
60:e3c3ee7b5ccf | 61:82a18c9337c3 |
---|---|
15 try: | 15 try: |
16 from setuptools import setup | 16 from setuptools import setup |
17 kw['entry_points'] = """ | 17 kw['entry_points'] = """ |
18 [console_scripts] | 18 [console_scripts] |
19 interpolate = numerics.interpolation:main | 19 interpolate = numerics.interpolation:main |
20 manipulate = numerics.manipulate:main | |
20 plot = numerics.plot:main | 21 plot = numerics.plot:main |
21 read-csv = numerics.read:main | 22 read-csv = numerics.read:main |
22 smooth = numerics.smooth:main | 23 smooth = numerics.smooth:main |
23 sum = numerics.sum:main | 24 sum = numerics.sum:main |
24 types = numerics.convert:main | 25 types = numerics.convert:main |
25 """ | 26 """ |
26 # TODO: | 27 # TODO: |
27 # cleanse = numerics.clean:main | 28 # cleanse = numerics.clean:main |
28 # fold = numerics.fold:main | 29 # fold = numerics.fold:main |
29 # manipulate = numerics.manipulate:main | |
30 kw['install_requires'] = dependencies | 30 kw['install_requires'] = dependencies |
31 except ImportError: | 31 except ImportError: |
32 from distutils.core import setup | 32 from distutils.core import setup |
33 kw['requires'] = dependencies | 33 kw['requires'] = dependencies |
34 | 34 |