-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b5c770e
commit 469ab27
Showing
1 changed file
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,17 +12,34 @@ def read(fname): | |
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
setup(name='array_to_latex', | ||
version='0.35', | ||
version='0.36', | ||
description='Return Numpy arrays as formatted LaTeX arrays.', | ||
author='Joseph C. Slater', | ||
author_email='[email protected]', | ||
url='https://github.com/josephcslater/array_to_latex/', | ||
download_url='https://github.com/josephcslater/array_to_latex/archive/0.35.tar.gz', | ||
download_url='https://github.com/josephcslater/array_to_latex/archive/0.36.tar.gz', | ||
packages=['array_to_latex'], | ||
long_description = read('README.rst'), | ||
keywords=['latex','array','format','numpy'], | ||
install_requires=[ | ||
'numpy', | ||
'clipboard' | ||
] | ||
keywords=['latex','array','format','numpy','scipy'], | ||
install_requires=['numpy','clipboard'], | ||
classifiers = ['Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: MIT License', | ||
'Environment :: Console', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Text Processing :: Markup :: LaTeX', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Operating System :: Unix', | ||
'Operating System :: MacOS', | ||
'Topic :: Utilities'] | ||
) | ||
|
||
# https://pypi.python.org/pypi?%3Aaction=list_classifiers |