Mercurial > hg > numerics
comparison setup.py @ 15:90edb741397d
merge
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 20 Sep 2014 11:32:51 -0700 |
parents | 5609225fb254 |
children | 5245d7d0c1bf |
comparison
equal
deleted
inserted
replaced
14:3a1f04f33feb | 15:90edb741397d |
---|---|
14 kw = {} | 14 kw = {} |
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 read-csv = numerics.read:main | 19 interpolate = numerics.interpolation:main |
20 read-csv = numerics.read:main | |
20 """ | 21 """ |
21 kw['install_requires'] = dependencies | 22 kw['install_requires'] = dependencies |
22 except ImportError: | 23 except ImportError: |
23 from distutils.core import setup | 24 from distutils.core import setup |
24 kw['requires'] = dependencies | 25 kw['requires'] = dependencies |