Skip to content

Commit a7ab9f7

Browse files
committed
slowly figuring this out.. pypi maybe will format now?
1 parent 3de2780 commit a7ab9f7

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[metadata]
2-
description-file = README.rst
2+
description-file = README.md

setup.py

+18-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
#!/usr/bin/env python
22

33
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()
413

514
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',
817
author='Joseph C. Slater',
918
author_email='[email protected]',
1019
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',
1221
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+
]
1528
)

0 commit comments

Comments
 (0)