Mercurial > hg > numerics
comparison setup.py @ 17:5245d7d0c1bf
basic usage
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sat, 20 Sep 2014 18:48:58 -0700 |
| parents | 90edb741397d |
| children | f865bc916593 |
comparison
equal
deleted
inserted
replaced
| 16:9e593b26e93b | 17:5245d7d0c1bf |
|---|---|
| 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 read-csv = numerics.read:main | 20 plot = numerics.plot:main |
| 21 read-csv = numerics.read:main | |
| 21 """ | 22 """ |
| 22 kw['install_requires'] = dependencies | 23 kw['install_requires'] = dependencies |
| 23 except ImportError: | 24 except ImportError: |
| 24 from distutils.core import setup | 25 from distutils.core import setup |
| 25 kw['requires'] = dependencies | 26 kw['requires'] = dependencies |
