forked from equadratures/equadratures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.15 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='equadratures',
version='8.1.1',
description='Machine learning with polynomials',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='polynomial chaos effective quadratures polynomial approximations gradients',
url='https://github.com/Effective-Quadratures/Effective-Quadratures',
author='Pranay Seshadri, Nicholas Wong, Irene Virdis, James Gross, Joe Zhou, Ashley Scillitoe',
license='LPGL-2.1',
packages=['equadratures', 'equadratures.distributions', 'equadratures.sampling_methods'],
install_requires=[
'numpy',
'scipy >= 0.15.0',
'matplotlib'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)