forked from equadratures/equadratures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.41 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
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='equadratures',
version='10',
description='Polynomial approximations',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
keywords='polynomial chaos effective quadratures polynomial approximations gradients',
url='https://github.com/Effective-Quadratures/equadratures',
author='Developers',
license='MIT',
packages=['equadratures', 'equadratures.distributions', 'equadratures.sampling_methods'],
install_requires=[
'numpy',
'scipy >= 0.15.0',
'matplotlib',
'seaborn',
'requests >= 2.11.1',
'graphviz'
],
extras_require={
"cvxpy": ['cvxpy>=1.1'],
"networkx": ['networkx==2.6.3'],
"torch" : ['torch>=1.7.0'],
"tensorflow": ['tensorflow==1.15.2'],
"pymanopt": ['pymanopt']
},
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)