Skip to content

Commit

Permalink
Added some documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrey-hokanson committed Jul 21, 2020
1 parent 8be7377 commit 507ff3c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,27 @@
]


with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='psdr',
version = '0.3.7',
description = 'Parameter Space Dimension Reduction Toolbox',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Jeffrey M. Hokanson',
author_email = 'jeffrey@hokanson.us',
url = 'https://github.com/jeffrey-hokanson/PSDR',
packages = ['psdr', 'psdr.demos', 'psdr.domains', 'psdr.sample', 'psdr.geometry'],
install_requires = install_requires,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Mathematics'
]
)

0 comments on commit 507ff3c

Please sign in to comment.