Skip to content

Commit

Permalink
updated license
Browse files Browse the repository at this point in the history
  • Loading branch information
josephcslater committed Nov 1, 2016
1 parent b5c770e commit 469ab27
Showing 1 changed file with 24 additions and 7 deletions.
31 changes: 24 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 469ab27

Please sign in to comment.