|
1 | 1 | #!/usr/bin/env python
|
2 | 2 |
|
3 | 3 | from distutils.core import setup
|
| 4 | +import os |
| 5 | +#from setuptools import setup |
| 6 | + |
| 7 | +# Utility function to read the README file. |
| 8 | +# Used for the long_description. It's nice, because now 1) we have a top level |
| 9 | +# README file and 2) it's easier to type in the README file than to put a raw |
| 10 | +# string in below ... |
| 11 | +def read(fname): |
| 12 | + return open(os.path.join(os.path.dirname(__file__), fname)).read() |
4 | 13 |
|
5 | 14 | setup(name='array_to_latex',
|
6 |
| - version='0.30b', |
7 |
| - description='Return Numpy arrays as formatted LaTeX arrays', |
| 15 | + version='0.32b', |
| 16 | + description='Return Numpy arrays as formatted LaTeX arrays. pip install --user array_to_latex', |
8 | 17 | author='Joseph C. Slater',
|
9 | 18 |
|
10 | 19 | url='https://github.com/josephcslater/array_to_latex/',
|
11 |
| - download_url='https://github.com/josephcslater/array_to_latex/archive/0.30b.tar.gz', |
| 20 | + download_url='https://github.com/josephcslater/array_to_latex/archive/0.32b.tar.gz', |
12 | 21 | packages=['array_to_latex'],
|
13 |
| - long_description = read('README.rst') |
14 |
| - keywords=['latex','array','format'] |
| 22 | + long_description = read('README.md'), |
| 23 | + keywords=['latex','array','format','numpy'], |
| 24 | + install_requires=[ |
| 25 | + 'numpy', |
| 26 | + 'clipboard' |
| 27 | + ] |
15 | 28 | )
|
0 commit comments