-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
32 lines (30 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='active_subspaces',
version='0.1',
description='Tools to apply active subspaces to analyze models and data.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='dimension reduction mathematics active subspaces uncertainty quantification uq',
url='https://github.com/paulcon/active_subspaces',
author='Paul Constantine',
author_email='[email protected]',
license='MIT',
packages=['active_subspaces', 'active_subspaces.utils'],
install_requires=[
'numpy',
'scipy >= 0.15.0',
'matplotlib'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)