-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 1022 Bytes
/
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
from distutils.core import setup
import sys
script_args = sys.argv[1:]
setup(name='assess',
version='1.0',
author='Stephan Kramer',
author_email='[email protected]',
description='Assess is a python package that implements a number of '
'analytical solutions to the Stokes equations in cylindrical and '
'spherical shell domains.',
long_description=open('README.rst').read(),
url='https://github.com/stephankramer/assess',
packages=['assess'],
install_requires=['numpy', 'scipy'],
keywords=['Stokes equations', 'analytical solutions',
'mantle flow', 'spherical shell'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'],
script_args=script_args,
ext_package='assess',
)